Commit adb0012f authored by Yang Guo's avatar Yang Guo Committed by Commit Bot

[gyp] move parser-shell.gyp to gypfiles.

R=machenbach@chromium.org

Bug: v8:7335
Change-Id: Ic89f9cd1fd45ece80da24c85559ef04bee93ee64
Reviewed-on: https://chromium-review.googlesource.com/888699
Commit-Queue: Yang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#50918}
parent 04e1f4f4
...@@ -281,7 +281,7 @@ GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ ...@@ -281,7 +281,7 @@ GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \
gypfiles/toolchain.gypi gypfiles/all.gyp gypfiles/mac/asan.gyp \ gypfiles/toolchain.gypi gypfiles/all.gyp gypfiles/mac/asan.gyp \
gypfiles/cctest.gyp test/fuzzer/fuzzer.gyp \ gypfiles/cctest.gyp test/fuzzer/fuzzer.gyp \
test/unittests/unittests.gyp gypfiles/v8.gyp \ test/unittests/unittests.gyp gypfiles/v8.gyp \
tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ gypfiles/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \
gypfiles/samples.gyp gypfiles/v8vtune.gyp gypfiles/d8.gyp gypfiles/samples.gyp gypfiles/v8vtune.gyp gypfiles/d8.gyp
# Generates all combinations of ARCHES and MODES, e.g. "ia32.release". # Generates all combinations of ARCHES and MODES, e.g. "ia32.release".
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
'conditions': [ 'conditions': [
['component!="shared_library"', { ['component!="shared_library"', {
'dependencies': [ 'dependencies': [
'../tools/parser-shell.gyp:parser-shell', 'parser-shell.gyp:parser-shell',
], ],
}], }],
# These items don't compile for Android on Mac. # These items don't compile for Android on Mac.
......
...@@ -30,15 +30,15 @@ ...@@ -30,15 +30,15 @@
'v8_code': 1, 'v8_code': 1,
'v8_enable_i18n_support%': 1, 'v8_enable_i18n_support%': 1,
}, },
'includes': ['../gypfiles/toolchain.gypi', '../gypfiles/features.gypi'], 'includes': ['toolchain.gypi', 'features.gypi'],
'targets': [ 'targets': [
{ {
'target_name': 'parser-shell', 'target_name': 'parser-shell',
'type': 'executable', 'type': 'executable',
'dependencies': [ 'dependencies': [
'../gypfiles/v8.gyp:v8', 'v8.gyp:v8',
'../gypfiles/v8.gyp:v8_libbase', 'v8.gyp:v8_libbase',
'../gypfiles/v8.gyp:v8_libplatform', 'v8.gyp:v8_libplatform',
], ],
'conditions': [ 'conditions': [
['v8_enable_i18n_support==1', { ['v8_enable_i18n_support==1', {
...@@ -52,8 +52,8 @@ ...@@ -52,8 +52,8 @@
'..', '..',
], ],
'sources': [ 'sources': [
'parser-shell.cc', '../tools/parser-shell.cc',
'shell-utils.h', '../tools/shell-utils.h',
], ],
}, },
], ],
......
...@@ -34,7 +34,7 @@ GYP_FILES = [ ...@@ -34,7 +34,7 @@ GYP_FILES = [
os.path.join(V8_BASE, 'test', 'mkgrokdump', 'mkgrokdump.gyp'), os.path.join(V8_BASE, 'test', 'mkgrokdump', 'mkgrokdump.gyp'),
os.path.join(V8_BASE, 'testing', 'gmock.gyp'), os.path.join(V8_BASE, 'testing', 'gmock.gyp'),
os.path.join(V8_BASE, 'testing', 'gtest.gyp'), os.path.join(V8_BASE, 'testing', 'gtest.gyp'),
os.path.join(V8_BASE, 'tools', 'parser-shell.gyp'), os.path.join(V8_BASE, 'gypfiles', 'parser-shell.gyp'),
] ]
ALL_GYP_PREFIXES = [ ALL_GYP_PREFIXES = [
......
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