all.gyp 563 Bytes
Newer Older
1
# Copyright 2011 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11
# 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': [
        '../samples/samples.gyp:*',
12
        '../src/d8.gyp:d8',
13
        '../test/cctest/cctest.gyp:*',
14
      ],
15 16 17 18 19 20 21
      'conditions': [
        ['component!="shared_library"', {
          'dependencies': [
            '../tools/lexer-shell.gyp:lexer-shell',
          ],
        }],
      ]
22 23 24
    }
  ]
}