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

Side by Side Diff: chrome/browser/devtools/devtools_protocol_constants.gyp

Issue 297803003: Add devtools protocol constants generator to chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | chrome/chrome_debugger.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'devtools_protocol_constants',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'devtools_protocol_constants',
13 'variables': {
14 'blink_protocol': '../../../third_party/WebKit/Source/devtools/proto col.json',
15 'generator': '../../../content/public/browser/devtools_protocol_cons tants_generator.py',
16 'package': 'chrome'
17 },
18 'inputs': [
19 '<(blink_protocol)',
20 '<(generator)',
21 ],
22 'outputs': [
23 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.cc',
24 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.h'
25 ],
26 'action':[
27 'python',
28 '<(generator)',
29 '<(package)',
30 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.cc',
31 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.h',
32 '<(blink_protocol)',
33 ],
34 'message': 'Generating DevTools protocol constants from <(blink_protoc ol)'
35 }
36 ],
37 },
38 ],
39 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_debugger.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698