summaryrefslogtreecommitdiff
path: root/deps/v8/gypfiles/samples.gyp
blob: 9080c0d445d24f78857e23c9d55e60fa243eadbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright 2012 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'variables': {
    'v8_code': 1,
    'v8_enable_i18n_support%': 1,
    'v8_toolset_for_shell%': 'target',
  },
  'includes': ['toolchain.gypi', 'features.gypi'],
  'target_defaults': {
    'type': 'executable',
    'dependencies': [
      'v8.gyp:v8',
      'v8.gyp:v8_libbase',
      'v8.gyp:v8_libplatform',
    ],
    'include_dirs': [
      '..',
    ],
    'conditions': [
      ['v8_enable_i18n_support==1', {
        'dependencies': [
          '<(icu_gyp_path):icui18n',
          '<(icu_gyp_path):icuuc',
        ],
      }],
      ['OS=="win" and v8_enable_i18n_support==1', {
        'dependencies': [
          '<(icu_gyp_path):icudata',
        ],
      }],
    ],
  },
  'targets': [
    {
      'target_name': 'v8_shell',
      'sources': [
        '../samples/shell.cc',
      ],
      'conditions': [
        [ 'want_separate_host_toolset==1', {
          'toolsets': [ '<(v8_toolset_for_shell)', ],
        }],
      ],
    },
    {
      'target_name': 'hello-world',
      'sources': [
        '../samples/hello-world.cc',
      ],
    },
    {
      'target_name': 'process',
      'sources': [
        '../samples/process.cc',
      ],
    },
  ],
}