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

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

Issue 2447323002: [inspector] use own copy of third_party/inspector_protocol (Closed)
Patch Set: updated README.v8 Created 4 years, 1 month 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
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 'protocol_path': '<(PRODUCT_DIR)/../../third_party/WebKit/Source/platform/in spector_protocol', 7 'protocol_path': '<(PRODUCT_DIR)/../../third_party/inspector_protocol',
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'inspector.gypi', 10 'inspector.gypi',
11 '<(PRODUCT_DIR)/../../../third_party/WebKit/Source/platform/inspector_protoc ol/inspector_protocol.gypi', 11 '<(PRODUCT_DIR)/../../../third_party/inspector_protocol/inspector_protocol.g ypi',
12 ], 12 ],
13 'targets': [ 13 'targets': [
14 { 'target_name': 'inspector_injected_script', 14 { 'target_name': 'inspector_injected_script',
15 'type': 'none', 15 'type': 'none',
16 'actions': [ 16 'actions': [
17 { 17 {
18 'action_name': 'convert_js_to_cpp_char_array', 18 'action_name': 'convert_js_to_cpp_char_array',
19 'inputs': [ 19 'inputs': [
20 'build/xxd.py', 20 'build/xxd.py',
21 '<(inspector_injected_script_source)', 21 '<(inspector_injected_script_source)',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 '--jinja_dir', '<(PRODUCT_DIR)/../../third_party', 100 '--jinja_dir', '<(PRODUCT_DIR)/../../third_party',
101 '--output_base', '<(SHARED_INTERMEDIATE_DIR)/src/inspector', 101 '--output_base', '<(SHARED_INTERMEDIATE_DIR)/src/inspector',
102 '--config', 'inspector_protocol_config.json', 102 '--config', 'inspector_protocol_config.json',
103 ], 103 ],
104 'message': 'Generating inspector protocol sources from protocol json', 104 'message': 'Generating inspector protocol sources from protocol json',
105 }, 105 },
106 ] 106 ]
107 }, 107 },
108 ], 108 ],
109 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698