Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: test/inspector/inspector.gyp

Issue 2894773003: [inspector] Merge InspectorClientImpl into IsolateData (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/inspector/BUILD.gn ('k') | test/inspector/inspector-impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « test/inspector/BUILD.gn ('k') | test/inspector/inspector-impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698