diff options
author | ager@chromium.org <ager@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-30 14:22:38 +0000 |
---|---|---|
committer | ager@chromium.org <ager@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-30 14:22:38 +0000 |
commit | a3e9a035f9dab82efb3e02dc9ecf53313ba30be1 (patch) | |
tree | 0582a3b9edd0e1a599cd12396e5cab0aa1c40a41 /build/temp_gyp | |
parent | 81c3181cb4977659073f0d290865182e094d0864 (diff) | |
download | chromium_src-a3e9a035f9dab82efb3e02dc9ecf53313ba30be1.zip chromium_src-a3e9a035f9dab82efb3e02dc9ecf53313ba30be1.tar.gz chromium_src-a3e9a035f9dab82efb3e02dc9ecf53313ba30be1.tar.bz2 |
Fix v8.gyp after adding new platform specific d8 files.
TBR=kmillikin@chromium.org
Review URL: http://codereview.chromium.org/56062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12772 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/temp_gyp')
-rw-r--r-- | build/temp_gyp/v8.gyp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/build/temp_gyp/v8.gyp b/build/temp_gyp/v8.gyp index 59cb1691..bdf03e5 100644 --- a/build/temp_gyp/v8.gyp +++ b/build/temp_gyp/v8.gyp @@ -231,6 +231,8 @@ 'd8_source_files': [ '../../v8/src/d8-debug.cc', '../../v8/src/d8-readline.cc', + '../../v8/src/d8-windows.cc', + '../../v8/src/d8-posix.cc', '../../v8/src/d8.cc', ], }, @@ -469,15 +471,17 @@ ], 'conditions': [ [ 'OS=="linux"', { + 'sources!': [ '../../v8/src/d8-windows.cc' ], 'link_settings': { 'libraries': [ '-lreadline' ] }, }], [ 'OS=="mac"', { + 'sources!': [ '../../v8/src/d8-windows.cc' ], 'link_settings': { 'libraries': [ '$(SDKROOT)/usr/lib/libreadline.dylib' ]}, }], [ 'OS=="win"', { - 'sources!': [ '../../v8/src/d8-readline.cc' ], + 'sources!': [ '../../v8/src/d8-readline.cc', '../../v8/src/d8-posix.cc' ], }], ], }, @@ -585,15 +589,17 @@ ], 'conditions': [ [ 'OS=="linux"', { + 'sources!': [ '../../v8/src/d8-windows.cc' ], 'link_settings': { 'libraries': [ '-lreadline' ] }, }], [ 'OS=="mac"', { + 'sources!': [ '../../v8/src/d8-windows.cc' ], 'link_settings': { 'libraries': [ '$(SDKROOT)/usr/lib/libreadline.dylib' ]}, }], [ 'OS=="win"', { - 'sources!': [ '../../v8/src/d8-readline.cc' ], + 'sources!': [ '../../v8/src/d8-readline.cc', '../../v8/src/d8-posix.cc' ], }], ], }, |