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
This commit is contained in:
jkummerow@chromium.org 2013-10-04 14:53:16 +00:00
parent 7d819d713f
commit 1cc549747e
6 changed files with 13 additions and 13 deletions

View File

@ -28,8 +28,8 @@
#ifndef V8_PLATFORM_ELAPSED_TIMER_H_
#define V8_PLATFORM_ELAPSED_TIMER_H_
#include "checks.h"
#include "platform/time.h"
#include "../checks.h"
#include "time.h"
namespace v8 {
namespace internal {

View File

@ -28,9 +28,9 @@
#ifndef V8_PLATFORM_MUTEX_H_
#define V8_PLATFORM_MUTEX_H_
#include "lazy-instance.h"
#include "../lazy-instance.h"
#if V8_OS_WIN
#include "win32-headers.h"
#include "../win32-headers.h"
#endif
#if V8_OS_POSIX

View File

@ -28,9 +28,9 @@
#ifndef V8_PLATFORM_SEMAPHORE_H_
#define V8_PLATFORM_SEMAPHORE_H_
#include "lazy-instance.h"
#include "../lazy-instance.h"
#if V8_OS_WIN
#include "win32-headers.h"
#include "../win32-headers.h"
#endif
#if V8_OS_MACOSX

View File

@ -31,7 +31,7 @@
#include <ctime>
#include <limits>
#include "allocation.h"
#include "../allocation.h"
// Forward declarations.
extern "C" {

View File

@ -29,7 +29,7 @@
#define V8_UNICODE_H_
#include <sys/types.h>
#include <globals.h>
#include "globals.h"
/**
* \file
* Definitions and convenience functions for working with unicode.

View File

@ -58,13 +58,10 @@
['component=="shared_library"', {
'type': '<(component)',
'sources': [
'../../src/defaults.cc',
# Note: on non-Windows we still build this file so that gyp
# has some sources to link into the component.
'../../src/v8dll-main.cc',
'../../src/defaults.cc',
],
'include_dirs': [
'../../include',
],
'defines': [
'V8_SHARED',
@ -274,7 +271,6 @@
'../../src/debug-agent.h',
'../../src/debug.cc',
'../../src/debug.h',
'../../src/defaults.cc',
'../../src/deoptimizer.cc',
'../../src/deoptimizer.h',
'../../src/disasm.h',
@ -858,6 +854,10 @@
'BUILDING_V8_SHARED',
'V8_SHARED',
],
}, {
'sources': [
'../../src/defaults.cc',
],
}],
['v8_postmortem_support=="true"', {
'sources': [