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

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

Issue 2540463003: [inspector] Use relative path to the third_party (Closed)
Patch Set: Created 4 years 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 | « no previous file | no next file » | 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 'protocol_path': '<(PRODUCT_DIR)/../../third_party/inspector_protocol', 7 'protocol_path': '../../third_party/inspector_protocol',
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'inspector.gypi', 10 'inspector.gypi',
11 '<(PRODUCT_DIR)/../../../third_party/inspector_protocol/inspector_protocol.g ypi', 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 {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'js_protocol.json', 90 'js_protocol.json',
91 'inspector_protocol_config.json', 91 'inspector_protocol_config.json',
92 '<@(inspector_protocol_files)', 92 '<@(inspector_protocol_files)',
93 ], 93 ],
94 'outputs': [ 94 'outputs': [
95 '<@(inspector_generated_sources)', 95 '<@(inspector_generated_sources)',
96 ], 96 ],
97 'action': [ 97 'action': [
98 'python', 98 'python',
99 '<(protocol_path)/CodeGenerator.py', 99 '<(protocol_path)/CodeGenerator.py',
100 '--jinja_dir', '<(PRODUCT_DIR)/../../third_party', 100 '--jinja_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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698