OLD | NEW |
1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 the V8 project authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'v8_code': 1, | 7 'v8_code': 1, |
8 }, | 8 }, |
9 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'], | 9 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'], |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'inspector-test', | 12 'target_name': 'inspector-test', |
13 'type': 'executable', | 13 'type': 'executable', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../src/v8.gyp:v8_libplatform', | 15 '../../src/v8.gyp:v8_libplatform', |
16 '../../src/v8.gyp:v8_libbase', | 16 '../../src/v8.gyp:v8_libbase', |
17 '../../src/v8.gyp:v8', | 17 '../../src/v8.gyp:v8', |
18 ], | 18 ], |
19 'include_dirs': [ | 19 'include_dirs': [ |
20 '../..', | 20 '../..', |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
23 'inspector-impl.cc', | |
24 'inspector-impl.h', | |
25 'inspector-test.cc', | 23 'inspector-test.cc', |
26 'isolate-data.cc', | 24 'isolate-data.cc', |
27 'isolate-data.h', | 25 'isolate-data.h', |
28 'task-runner.cc', | 26 'task-runner.cc', |
29 'task-runner.h', | 27 'task-runner.h', |
30 ], | 28 ], |
31 'conditions': [ | 29 'conditions': [ |
32 ['v8_enable_i18n_support==1', { | 30 ['v8_enable_i18n_support==1', { |
33 'dependencies': [ | 31 'dependencies': [ |
34 '<(icu_gyp_path):icui18n', | 32 '<(icu_gyp_path):icui18n', |
(...skipping 16 matching lines...) Expand all Loading... |
51 '../../gypfiles/isolate.gypi', | 49 '../../gypfiles/isolate.gypi', |
52 ], | 50 ], |
53 'sources': [ | 51 'sources': [ |
54 'inspector.isolate', | 52 'inspector.isolate', |
55 ], | 53 ], |
56 }, | 54 }, |
57 ], | 55 ], |
58 }], | 56 }], |
59 ], | 57 ], |
60 } | 58 } |
OLD | NEW |