all.gyp 1.72 KB
Newer Older
1
# Copyright 2011 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
    {
      'target_name': 'All',
      'type': 'none',
      'dependencies': [
11
        '../src/d8.gyp:d8',
12
      ],
13 14 15
      'conditions': [
        ['component!="shared_library"', {
          'dependencies': [
16
            '../tools/parser-shell.gyp:parser-shell',
17 18
          ],
        }],
19 20 21 22 23 24 25 26 27
        # These items don't compile for Android on Mac.
        ['host_os!="mac" or OS!="android"', {
          'dependencies': [
            '../samples/samples.gyp:*',
            '../test/cctest/cctest.gyp:*',
            '../test/fuzzer/fuzzer.gyp:*',
            '../test/unittests/unittests.gyp:*',
            ],
        }],
28 29
        ['test_isolation_mode != "noop"', {
          'dependencies': [
30
            '../test/bot_default.gyp:*',
31
            '../test/benchmarks/benchmarks.gyp:*',
32
            '../test/default.gyp:*',
33
            '../test/ignition.gyp:*',
34 35 36
            '../test/intl/intl.gyp:*',
            '../test/message/message.gyp:*',
            '../test/mjsunit/mjsunit.gyp:*',
37
            '../test/mozilla/mozilla.gyp:*',
38
            '../test/optimize_for_size.gyp:*',
39
            '../test/perf.gyp:*',
40
            '../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:*',
45
            '../tools/gcmole/run_gcmole.gyp:*',
46
            '../tools/jsfunfuzz/jsfunfuzz.gyp:*',
47
            '../tools/run-deopt-fuzzer.gyp:*',
48
            '../tools/run-valgrind.gyp:*',
49 50
          ],
        }],
51
      ]
52 53 54
    }
  ]
}