OLD | NEW |
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/inspector/inspector.gyp:*', |
| 31 ], |
| 32 }], |
| 33 ['v8_enable_inspector==1 and test_isolation_mode != "noop"', { |
| 34 'dependencies': [ |
30 '../test/debugger/debugger.gyp:*', | 35 '../test/debugger/debugger.gyp:*', |
31 '../test/inspector/inspector.gyp:*', | |
32 ], | 36 ], |
33 }], | 37 }], |
34 ['test_isolation_mode != "noop"', { | 38 ['test_isolation_mode != "noop"', { |
35 'dependencies': [ | 39 'dependencies': [ |
36 '../test/bot_default.gyp:*', | 40 '../test/bot_default.gyp:*', |
37 '../test/benchmarks/benchmarks.gyp:*', | 41 '../test/benchmarks/benchmarks.gyp:*', |
38 '../test/default.gyp:*', | 42 '../test/default.gyp:*', |
39 '../test/intl/intl.gyp:*', | 43 '../test/intl/intl.gyp:*', |
40 '../test/message/message.gyp:*', | 44 '../test/message/message.gyp:*', |
41 '../test/mjsunit/mjsunit.gyp:*', | 45 '../test/mjsunit/mjsunit.gyp:*', |
42 '../test/mozilla/mozilla.gyp:*', | 46 '../test/mozilla/mozilla.gyp:*', |
43 '../test/optimize_for_size.gyp:*', | 47 '../test/optimize_for_size.gyp:*', |
44 '../test/perf.gyp:*', | 48 '../test/perf.gyp:*', |
45 '../test/preparser/preparser.gyp:*', | 49 '../test/preparser/preparser.gyp:*', |
46 '../test/simdjs/simdjs.gyp:*', | 50 '../test/simdjs/simdjs.gyp:*', |
47 '../test/test262/test262.gyp:*', | 51 '../test/test262/test262.gyp:*', |
48 '../test/webkit/webkit.gyp:*', | 52 '../test/webkit/webkit.gyp:*', |
49 '../tools/check-static-initializers.gyp:*', | 53 '../tools/check-static-initializers.gyp:*', |
50 '../tools/gcmole/run_gcmole.gyp:*', | 54 '../tools/gcmole/run_gcmole.gyp:*', |
51 '../tools/jsfunfuzz/jsfunfuzz.gyp:*', | 55 '../tools/jsfunfuzz/jsfunfuzz.gyp:*', |
52 '../tools/run-deopt-fuzzer.gyp:*', | 56 '../tools/run-deopt-fuzzer.gyp:*', |
53 '../tools/run-valgrind.gyp:*', | 57 '../tools/run-valgrind.gyp:*', |
54 ], | 58 ], |
55 }], | 59 }], |
56 ] | 60 ] |
57 } | 61 } |
58 ] | 62 ] |
59 } | 63 } |
OLD | NEW |