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

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

Issue 2199253002: [inspector] include additional outputs from protocol handler generator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: also update to new js_protocol.json Created 4 years, 4 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 | « src/inspector/BUILD.gn ('k') | src/inspector/js_protocol.json » ('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 { 'variables': { 5 { 'variables': {
6 'protocol_path': '../../third_party/WebKit/Source/platform/inspector_protoco l', 6 'protocol_path': '../../third_party/WebKit/Source/platform/inspector_protoco l',
7 'protocol_sources': [ 7 'protocol_sources': [
8 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.cpp', 8 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.cpp',
9 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.h', 9 '<(SHARED_INTERMEDIATE_DIR)/inspector/Console.h',
10 '<(SHARED_INTERMEDIATE_DIR)/inspector/Debugger.cpp', 10 '<(SHARED_INTERMEDIATE_DIR)/inspector/Debugger.cpp',
11 '<(SHARED_INTERMEDIATE_DIR)/inspector/Debugger.h', 11 '<(SHARED_INTERMEDIATE_DIR)/inspector/Debugger.h',
12 '<(SHARED_INTERMEDIATE_DIR)/inspector/HeapProfiler.cpp', 12 '<(SHARED_INTERMEDIATE_DIR)/inspector/HeapProfiler.cpp',
13 '<(SHARED_INTERMEDIATE_DIR)/inspector/HeapProfiler.h', 13 '<(SHARED_INTERMEDIATE_DIR)/inspector/HeapProfiler.h',
14 '<(SHARED_INTERMEDIATE_DIR)/inspector/Profiler.cpp', 14 '<(SHARED_INTERMEDIATE_DIR)/inspector/Profiler.cpp',
15 '<(SHARED_INTERMEDIATE_DIR)/inspector/Profiler.h', 15 '<(SHARED_INTERMEDIATE_DIR)/inspector/Profiler.h',
16 '<(SHARED_INTERMEDIATE_DIR)/inspector/public/Debugger.h',
17 '<(SHARED_INTERMEDIATE_DIR)/inspector/public/Runtime.h',
16 '<(SHARED_INTERMEDIATE_DIR)/inspector/Runtime.cpp', 18 '<(SHARED_INTERMEDIATE_DIR)/inspector/Runtime.cpp',
17 '<(SHARED_INTERMEDIATE_DIR)/inspector/Runtime.h', 19 '<(SHARED_INTERMEDIATE_DIR)/inspector/Runtime.h',
18 ] 20 ]
19 }, 21 },
20 'targets': [ 22 'targets': [
21 { 'target_name': 'inspector_protocol_sources', 23 { 'target_name': 'inspector_protocol_sources',
22 'type': 'none', 24 'type': 'none',
23 'variables': { 25 'variables': {
24 'jinja_module_files': [ 26 'jinja_module_files': [
25 # jinja2/__init__.py contains version string, so sufficient for packag e 27 # jinja2/__init__.py contains version string, so sufficient for packag e
(...skipping 19 matching lines...) Expand all
45 '<@(protocol_sources)', 47 '<@(protocol_sources)',
46 ], 48 ],
47 'action': [ 49 'action': [
48 'python', 50 'python',
49 '<(protocol_path)/CodeGenerator.py', 51 '<(protocol_path)/CodeGenerator.py',
50 '--protocol', 'js_protocol.json', 52 '--protocol', 'js_protocol.json',
51 '--string_type', 'String', 53 '--string_type', 'String',
52 '--export_macro', 'PLATFORM_EXPORT', 54 '--export_macro', 'PLATFORM_EXPORT',
53 '--output_dir', '<(SHARED_INTERMEDIATE_DIR)/inspector', 55 '--output_dir', '<(SHARED_INTERMEDIATE_DIR)/inspector',
54 '--output_package', 'inspector', 56 '--output_package', 'inspector',
57 '--exported_dir', '<(SHARED_INTERMEDIATE_DIR)/inspector/public',
58 '--exported_package', 'inspector/public',
55 ], 59 ],
56 'message': 'Generating Inspector protocol backend sources from json de finitions', 60 'message': 'Generating Inspector protocol backend sources from json de finitions',
57 }, 61 },
58 ] 62 ]
59 }, 63 },
60 { 'target_name': 'inspector_protocol', 64 { 'target_name': 'inspector_protocol',
61 'type': 'static_library', 65 'type': 'static_library',
62 'dependencies': [ 66 'dependencies': [
63 'inspector_protocol_sources', 67 'inspector_protocol_sources',
64 ], 68 ],
(...skipping 26 matching lines...) Expand all
91 '<(protocol_path)/String16.h', 95 '<(protocol_path)/String16.h',
92 '<(protocol_path)/String16STL.cpp', 96 '<(protocol_path)/String16STL.cpp',
93 '<(protocol_path)/String16STL.h', 97 '<(protocol_path)/String16STL.h',
94 '<(protocol_path)/ValueConversions.h', 98 '<(protocol_path)/ValueConversions.h',
95 '<(protocol_path)/Values.cpp', 99 '<(protocol_path)/Values.cpp',
96 '<(protocol_path)/Values.h', 100 '<(protocol_path)/Values.h',
97 ] 101 ]
98 }, 102 },
99 ], 103 ],
100 } 104 }
OLDNEW
« no previous file with comments | « src/inspector/BUILD.gn ('k') | src/inspector/js_protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698