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

Side by Side Diff: content/browser/devtools/devtools_resources.gyp

Issue 508973003: DevTools: Protocol handler generator for content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fit generated code in 80 chars per line Created 6 years, 3 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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_resources', 8 'target_name': 'devtools_resources',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'action':[ 63 'action':[
64 'python', 64 'python',
65 '<(generator)', 65 '<(generator)',
66 '<(package)', 66 '<(package)',
67 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.cc', 67 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.cc',
68 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.h', 68 '<(SHARED_INTERMEDIATE_DIR)/<(package)/browser/devtools/devtools_pro tocol_constants.h',
69 '<(blink_protocol)', 69 '<(blink_protocol)',
70 '<(browser_protocol)', 70 '<(browser_protocol)',
71 ], 71 ],
72 'message': 'Generating DevTools protocol constants from <(blink_protoc ol)' 72 'message': 'Generating DevTools protocol constants from <(blink_protoc ol)'
73 } 73 },
74 {
75 'action_name': 'devtools_protocol_handler',
76 'variables': {
77 'blink_protocol': '../../../third_party/WebKit/Source/devtools/proto col.json',
78 'generator': 'protocol/devtools_protocol_handler_generator.py',
79 'output_h': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pro tocol/devtools_protocol_handler_impl.h',
dgozman 2014/09/16 15:38:05 Let's put .cc first.
vkuzkokov 2014/09/16 16:37:55 Done.
80 'output_cc': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pr otocol/devtools_protocol_handler_impl.cc',
81 },
82 'inputs': [
83 '<(blink_protocol)',
84 '<(generator)',
85 ],
86 'outputs': [
87 '<(output_h)',
88 '<(output_cc)',
89 ],
90 'action':[
91 'python',
92 '<(generator)',
93 '<(blink_protocol)',
94 '<(output_h)',
95 '<(output_cc)',
96 ],
97 'message': 'Generating DevTools protocol browser-side handlers from <( blink_protocol)'
98 },
74 ], 99 ],
75 'direct_dependent_settings': { 100 'direct_dependent_settings': {
76 'include_dirs': [ 101 'include_dirs': [
77 '<(SHARED_INTERMEDIATE_DIR)', 102 '<(SHARED_INTERMEDIATE_DIR)',
78 ] 103 ]
79 }, 104 },
80 'includes': [ '../../../build/grit_target.gypi' ], 105 'includes': [ '../../../build/grit_target.gypi' ],
81 }, 106 },
82 ], 107 ],
83 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698