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

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

Issue 2035653005: DevTools: split protocol.json into files per domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 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_handler', 8 'target_name': 'devtools_protocol_handler',
9 'type': 'none', 9 'type': 'none',
10 'actions': [ 10 'actions': [
11 { 11 {
12 'action_name': 'devtools_protocol_handler', 12 'action_name': 'devtools_protocol_handler',
13 'dependencies': [
14 '//third_party/WebKit/Source/core/inspector:protocol_version'
15 ],
13 'variables': { 16 'variables': {
14 'blink_protocol': '../../../third_party/WebKit/Source/devtools/proto col.json', 17 'blink_protocol': '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/p rotocol.json',
15 'browser_protocol': 'browser_protocol.json', 18 'browser_protocol': 'browser_protocol.json',
16 'generator': 'protocol/devtools_protocol_handler_generator.py', 19 'generator': 'protocol/devtools_protocol_handler_generator.py',
17 'output_cc': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pr otocol/devtools_protocol_dispatcher.cc', 20 'output_cc': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pr otocol/devtools_protocol_dispatcher.cc',
18 'output_h': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pro tocol/devtools_protocol_dispatcher.h', 21 'output_h': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pro tocol/devtools_protocol_dispatcher.h',
19 }, 22 },
20 'inputs': [ 23 'inputs': [
21 '<(blink_protocol)', 24 '<(blink_protocol)',
22 '<(browser_protocol)', 25 '<(browser_protocol)',
23 '<(generator)', 26 '<(generator)',
24 ], 27 ],
(...skipping 13 matching lines...) Expand all
38 }, 41 },
39 ], 42 ],
40 'direct_dependent_settings': { 43 'direct_dependent_settings': {
41 'include_dirs': [ 44 'include_dirs': [
42 '<(SHARED_INTERMEDIATE_DIR)', 45 '<(SHARED_INTERMEDIATE_DIR)',
43 ] 46 ]
44 }, 47 },
45 }, 48 },
46 ], 49 ],
47 } 50 }
OLDNEW
« no previous file with comments | « content/browser/devtools/BUILD.gn ('k') | content/browser/devtools/protocol/devtools_protocol_handler_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698