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