Fix shared_library build after r17107

R=rmcilroy@chromium.org

Review URL: https://codereview.chromium.org/26004003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17109 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 7d819d71
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
#ifndef V8_PLATFORM_ELAPSED_TIMER_H_ #ifndef V8_PLATFORM_ELAPSED_TIMER_H_
#define V8_PLATFORM_ELAPSED_TIMER_H_ #define V8_PLATFORM_ELAPSED_TIMER_H_
#include "checks.h" #include "../checks.h"
#include "platform/time.h" #include "time.h"
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
#ifndef V8_PLATFORM_MUTEX_H_ #ifndef V8_PLATFORM_MUTEX_H_
#define V8_PLATFORM_MUTEX_H_ #define V8_PLATFORM_MUTEX_H_
#include "lazy-instance.h" #include "../lazy-instance.h"
#if V8_OS_WIN #if V8_OS_WIN
#include "win32-headers.h" #include "../win32-headers.h"
#endif #endif
#if V8_OS_POSIX #if V8_OS_POSIX
......
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
#ifndef V8_PLATFORM_SEMAPHORE_H_ #ifndef V8_PLATFORM_SEMAPHORE_H_
#define V8_PLATFORM_SEMAPHORE_H_ #define V8_PLATFORM_SEMAPHORE_H_
#include "lazy-instance.h" #include "../lazy-instance.h"
#if V8_OS_WIN #if V8_OS_WIN
#include "win32-headers.h" #include "../win32-headers.h"
#endif #endif
#if V8_OS_MACOSX #if V8_OS_MACOSX
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#include <ctime> #include <ctime>
#include <limits> #include <limits>
#include "allocation.h" #include "../allocation.h"
// Forward declarations. // Forward declarations.
extern "C" { extern "C" {
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#define V8_UNICODE_H_ #define V8_UNICODE_H_
#include <sys/types.h> #include <sys/types.h>
#include <globals.h> #include "globals.h"
/** /**
* \file * \file
* Definitions and convenience functions for working with unicode. * Definitions and convenience functions for working with unicode.
......
...@@ -58,13 +58,10 @@ ...@@ -58,13 +58,10 @@
['component=="shared_library"', { ['component=="shared_library"', {
'type': '<(component)', 'type': '<(component)',
'sources': [ 'sources': [
'../../src/defaults.cc',
# Note: on non-Windows we still build this file so that gyp # Note: on non-Windows we still build this file so that gyp
# has some sources to link into the component. # has some sources to link into the component.
'../../src/v8dll-main.cc', '../../src/v8dll-main.cc',
'../../src/defaults.cc',
],
'include_dirs': [
'../../include',
], ],
'defines': [ 'defines': [
'V8_SHARED', 'V8_SHARED',
...@@ -274,7 +271,6 @@ ...@@ -274,7 +271,6 @@
'../../src/debug-agent.h', '../../src/debug-agent.h',
'../../src/debug.cc', '../../src/debug.cc',
'../../src/debug.h', '../../src/debug.h',
'../../src/defaults.cc',
'../../src/deoptimizer.cc', '../../src/deoptimizer.cc',
'../../src/deoptimizer.h', '../../src/deoptimizer.h',
'../../src/disasm.h', '../../src/disasm.h',
...@@ -858,6 +854,10 @@ ...@@ -858,6 +854,10 @@
'BUILDING_V8_SHARED', 'BUILDING_V8_SHARED',
'V8_SHARED', 'V8_SHARED',
], ],
}, {
'sources': [
'../../src/defaults.cc',
],
}], }],
['v8_postmortem_support=="true"', { ['v8_postmortem_support=="true"', {
'sources': [ 'sources': [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment