Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1326)

Side by Side Diff: gypfiles/all.gyp

Issue 2425973002: [debugger] basic test infrastructure for new debugger test api. (Closed)
Patch Set: fix Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 '../src/d8.gyp:d8', 11 '../src/d8.gyp:d8',
12 ], 12 ],
13 'conditions': [ 13 'conditions': [
14 ['component!="shared_library"', { 14 ['component!="shared_library"', {
15 'dependencies': [ 15 'dependencies': [
16 '../tools/parser-shell.gyp:parser-shell', 16 '../tools/parser-shell.gyp:parser-shell',
17 ], 17 ],
18 }], 18 }],
19 # These items don't compile for Android on Mac. 19 # These items don't compile for Android on Mac.
20 ['host_os!="mac" or OS!="android"', { 20 ['host_os!="mac" or OS!="android"', {
21 'dependencies': [ 21 'dependencies': [
22 '../samples/samples.gyp:*', 22 '../samples/samples.gyp:*',
23 '../test/cctest/cctest.gyp:*', 23 '../test/cctest/cctest.gyp:*',
24 '../test/fuzzer/fuzzer.gyp:*', 24 '../test/fuzzer/fuzzer.gyp:*',
25 '../test/unittests/unittests.gyp:*', 25 '../test/unittests/unittests.gyp:*',
26 ], 26 ],
27 }], 27 }],
28 ['v8_enable_inspector==1', { 28 ['v8_enable_inspector==1', {
29 'dependencies': [ 29 'dependencies': [
30 '../test/debugger/debugger.gyp:*',
30 '../test/inspector/inspector.gyp:*', 31 '../test/inspector/inspector.gyp:*',
31 ], 32 ],
32 }], 33 }],
33 ['test_isolation_mode != "noop"', { 34 ['test_isolation_mode != "noop"', {
34 'dependencies': [ 35 'dependencies': [
35 '../test/bot_default.gyp:*', 36 '../test/bot_default.gyp:*',
36 '../test/benchmarks/benchmarks.gyp:*', 37 '../test/benchmarks/benchmarks.gyp:*',
37 '../test/default.gyp:*', 38 '../test/default.gyp:*',
38 '../test/intl/intl.gyp:*', 39 '../test/intl/intl.gyp:*',
39 '../test/message/message.gyp:*', 40 '../test/message/message.gyp:*',
40 '../test/mjsunit/mjsunit.gyp:*', 41 '../test/mjsunit/mjsunit.gyp:*',
41 '../test/mozilla/mozilla.gyp:*', 42 '../test/mozilla/mozilla.gyp:*',
42 '../test/optimize_for_size.gyp:*', 43 '../test/optimize_for_size.gyp:*',
43 '../test/perf.gyp:*', 44 '../test/perf.gyp:*',
44 '../test/preparser/preparser.gyp:*', 45 '../test/preparser/preparser.gyp:*',
45 '../test/simdjs/simdjs.gyp:*', 46 '../test/simdjs/simdjs.gyp:*',
46 '../test/test262/test262.gyp:*', 47 '../test/test262/test262.gyp:*',
47 '../test/webkit/webkit.gyp:*', 48 '../test/webkit/webkit.gyp:*',
48 '../tools/check-static-initializers.gyp:*', 49 '../tools/check-static-initializers.gyp:*',
49 '../tools/gcmole/run_gcmole.gyp:*', 50 '../tools/gcmole/run_gcmole.gyp:*',
50 '../tools/jsfunfuzz/jsfunfuzz.gyp:*', 51 '../tools/jsfunfuzz/jsfunfuzz.gyp:*',
51 '../tools/run-deopt-fuzzer.gyp:*', 52 '../tools/run-deopt-fuzzer.gyp:*',
52 '../tools/run-valgrind.gyp:*', 53 '../tools/run-valgrind.gyp:*',
53 ], 54 ],
54 }], 55 }],
55 ] 56 ]
56 } 57 }
57 ] 58 ]
58 } 59 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/d8.h » ('j') | test/debugger/debugger.isolate » ('J')

Powered by Google App Engine
This is Rietveld 408576698