Commit 4943f4f6 authored by Yang Guo's avatar Yang Guo Committed by Commit Bot

[gyp] move cctest.gyp

R=machenbach@chromium.org

Bug: v8:7341
Change-Id: I8ab5cadbff2428f43ee1f240c58c53f14c2a8df3
Reviewed-on: https://chromium-review.googlesource.com/883201
Commit-Queue: Yang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#50859}
parent d11c95b6
...@@ -277,7 +277,7 @@ GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ ...@@ -277,7 +277,7 @@ GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \
gypfiles/shim_headers.gypi gypfiles/features.gypi \ gypfiles/shim_headers.gypi gypfiles/features.gypi \
gypfiles/standalone.gypi \ gypfiles/standalone.gypi \
gypfiles/toolchain.gypi gypfiles/all.gyp gypfiles/mac/asan.gyp \ gypfiles/toolchain.gypi gypfiles/all.gyp gypfiles/mac/asan.gyp \
test/cctest/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 \ tools/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
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
['host_os!="mac" or OS!="android"', { ['host_os!="mac" or OS!="android"', {
'dependencies': [ 'dependencies': [
'samples.gyp:*', 'samples.gyp:*',
'../test/cctest/cctest.gyp:*', 'cctest.gyp:*',
'../test/fuzzer/fuzzer.gyp:*', '../test/fuzzer/fuzzer.gyp:*',
'../test/unittests/unittests.gyp:*', '../test/unittests/unittests.gyp:*',
], ],
......
This diff is collapsed.
...@@ -27,7 +27,7 @@ GYP_FILES = [ ...@@ -27,7 +27,7 @@ GYP_FILES = [
os.path.join(V8_BASE, 'gypfiles', 'inspector.gypi'), os.path.join(V8_BASE, 'gypfiles', 'inspector.gypi'),
os.path.join(V8_BASE, 'gypfiles', 'v8vtune.gyp'), os.path.join(V8_BASE, 'gypfiles', 'v8vtune.gyp'),
os.path.join(V8_BASE, 'gypfiles', 'samples.gyp'), os.path.join(V8_BASE, 'gypfiles', 'samples.gyp'),
os.path.join(V8_BASE, 'test', 'cctest', 'cctest.gyp'), os.path.join(V8_BASE, 'gypfiles', 'cctest.gyp'),
os.path.join(V8_BASE, 'test', 'fuzzer', 'fuzzer.gyp'), os.path.join(V8_BASE, 'test', 'fuzzer', 'fuzzer.gyp'),
os.path.join(V8_BASE, 'test', 'unittests', 'unittests.gyp'), os.path.join(V8_BASE, 'test', 'unittests', 'unittests.gyp'),
os.path.join(V8_BASE, 'test', 'inspector', 'inspector.gyp'), os.path.join(V8_BASE, 'test', 'inspector', 'inspector.gyp'),
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
'target_name': 'bot_default_run', 'target_name': 'bot_default_run',
'type': 'none', 'type': 'none',
'dependencies': [ 'dependencies': [
'cctest/cctest.gyp:cctest_run', '../gypfiles/cctest.gyp:cctest_run',
'debugger/debugger.gyp:debugger_run', 'debugger/debugger.gyp:debugger_run',
'fuzzer/fuzzer.gyp:fuzzer_run', 'fuzzer/fuzzer.gyp:fuzzer_run',
'inspector/inspector.gyp:inspector-test_run', 'inspector/inspector.gyp:inspector-test_run',
......
This diff is collapsed.
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
'target_name': 'default_run', 'target_name': 'default_run',
'type': 'none', 'type': 'none',
'dependencies': [ 'dependencies': [
'cctest/cctest.gyp:cctest_run', '../gypfiles/cctest.gyp:cctest_run',
'debugger/debugger.gyp:debugger_run', 'debugger/debugger.gyp:debugger_run',
'fuzzer/fuzzer.gyp:fuzzer_run', 'fuzzer/fuzzer.gyp:fuzzer_run',
'inspector/inspector.gyp:inspector-test_run', 'inspector/inspector.gyp:inspector-test_run',
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
'target_name': 'optimize_for_size_run', 'target_name': 'optimize_for_size_run',
'type': 'none', 'type': 'none',
'dependencies': [ 'dependencies': [
'cctest/cctest.gyp:cctest_run', '../gypfiles/cctest.gyp:cctest_run',
'debugger/debugger.gyp:debugger_run', 'debugger/debugger.gyp:debugger_run',
'intl/intl.gyp:intl_run', 'intl/intl.gyp:intl_run',
'mjsunit/mjsunit.gyp:mjsunit_run', 'mjsunit/mjsunit.gyp:mjsunit_run',
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
'target_name': 'perf_run', 'target_name': 'perf_run',
'type': 'none', 'type': 'none',
'dependencies': [ 'dependencies': [
'cctest/cctest.gyp:cctest_exe_run', '../gypfiles/cctest.gyp:cctest_exe_run',
'../gypfiles/d8.gyp:d8_run', '../gypfiles/d8.gyp:d8_run',
], ],
'includes': [ 'includes': [
......
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