OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'devtools_protocol_constants', | 8 'target_name': 'devtools_protocol_constants', |
9 'type': 'none', | 9 'type': 'none', |
10 'actions': [ | 10 'actions': [ |
11 { | 11 { |
12 'action_name': 'devtools_protocol_constants', | 12 'action_name': 'devtools_protocol_constants', |
13 'variables': { | 13 'variables': { |
14 'blink_protocol': '../../../third_party/WebKit/Source/devtools/proto
col.json', | 14 'blink_protocol': '../../../third_party/WebKit/Source/devtools/proto
col.json', |
| 15 'browser_protocol': '../../../content/browser/devtools/browser_proto
col.json', |
15 'generator': '../../../content/public/browser/devtools_protocol_cons
tants_generator.py', | 16 'generator': '../../../content/public/browser/devtools_protocol_cons
tants_generator.py', |
16 'package': 'chrome' | 17 'package': 'chrome' |
17 }, | 18 }, |
18 'inputs': [ | 19 'inputs': [ |
19 '<(blink_protocol)', | 20 '<(blink_protocol)', |
| 21 '<(browser_protocol)', |
20 '<(generator)', | 22 '<(generator)', |
21 ], | 23 ], |
22 'outputs': [ | 24 'outputs': [ |
23 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.cc', | 25 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.cc', |
24 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.h' | 26 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.h' |
25 ], | 27 ], |
26 'action':[ | 28 'action':[ |
27 'python', | 29 'python', |
28 '<(generator)', | 30 '<(generator)', |
29 '<(package)', | 31 '<(package)', |
30 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.cc', | 32 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.cc', |
31 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.h', | 33 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro
tocol_constants.h', |
32 '<(blink_protocol)', | 34 '<(blink_protocol)', |
| 35 '<(browser_protocol)', |
33 ], | 36 ], |
34 'message': 'Generating DevTools protocol constants from <(blink_protoc
ol)' | 37 'message': 'Generating DevTools protocol constants from <(blink_protoc
ol) and <(browser_protocol)' |
35 } | 38 } |
36 ], | 39 ], |
37 }, | 40 }, |
38 ], | 41 ], |
39 } | 42 } |
OLD | NEW |