blob: ff1bea4b61137fddf5ffc5aedcd8b5259d3e96ad [file] [log] [blame]
Ben Murdoch589d6972011-11-30 16:04:58 +00001# Copyright 2011 the V8 project authors. All rights reserved.
Ben Murdochb0fe1622011-05-05 13:52:32 +01002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'targets': [
7 {
8 'target_name': 'All',
9 'type': 'none',
10 'dependencies': [
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000011 '../src/d8.gyp:d8',
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000012 ],
Ben Murdochb8a8cc12014-11-26 15:28:44 +000013 'conditions': [
14 ['component!="shared_library"', {
15 'dependencies': [
Emily Bernierd0a1eb72015-03-24 16:35:39 -040016 '../tools/parser-shell.gyp:parser-shell',
Ben Murdochb8a8cc12014-11-26 15:28:44 +000017 ],
18 }],
Ben Murdochc5610432016-08-08 18:44:38 +010019 # These items don't compile for Android on Mac.
20 ['host_os!="mac" or OS!="android"', {
21 'dependencies': [
22 '../samples/samples.gyp:*',
23 '../test/cctest/cctest.gyp:*',
24 '../test/fuzzer/fuzzer.gyp:*',
25 '../test/unittests/unittests.gyp:*',
26 ],
27 }],
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000028 ['test_isolation_mode != "noop"', {
29 'dependencies': [
30 '../test/bot_default.gyp:*',
31 '../test/benchmarks/benchmarks.gyp:*',
32 '../test/default.gyp:*',
33 '../test/ignition.gyp:*',
34 '../test/intl/intl.gyp:*',
35 '../test/message/message.gyp:*',
36 '../test/mjsunit/mjsunit.gyp:*',
37 '../test/mozilla/mozilla.gyp:*',
38 '../test/optimize_for_size.gyp:*',
Ben Murdoch097c5b22016-05-18 11:27:45 +010039 '../test/perf.gyp:*',
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000040 '../test/preparser/preparser.gyp:*',
41 '../test/simdjs/simdjs.gyp:*',
42 '../test/test262/test262.gyp:*',
43 '../test/webkit/webkit.gyp:*',
44 '../tools/check-static-initializers.gyp:*',
Ben Murdoch097c5b22016-05-18 11:27:45 +010045 '../tools/gcmole/run_gcmole.gyp:*',
46 '../tools/jsfunfuzz/jsfunfuzz.gyp:*',
47 '../tools/run-deopt-fuzzer.gyp:*',
48 '../tools/run-valgrind.gyp:*',
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000049 ],
50 }],
Ben Murdochb8a8cc12014-11-26 15:28:44 +000051 ]
Ben Murdochb0fe1622011-05-05 13:52:32 +010052 }
53 ]
54}