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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/protocol.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/inspector_protocol/protocol.gyp
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/protocol.gyp b/third_party/WebKit/Source/platform/inspector_protocol/protocol.gyp
deleted file mode 100644
index 122809706fc023acb48c104f423c4d9aca9fba96..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/inspector_protocol/protocol.gyp
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'blink_platform_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/platform',
- 'jinja_module_files': [
- # jinja2/__init__.py contains version string, so sufficient for package
- '<(DEPTH)/third_party/jinja2/__init__.py',
- '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep
- ],
- },
- 'targets': [
- {
- # GN version: //third_party/WebKit/Source/platform/inspector_protocol_version
- 'target_name': 'protocol_version',
- 'type': 'none',
- 'actions': [
- {
- 'action_name': 'generateInspectorProtocolVersion',
- 'inputs': [
- 'generate-inspector-protocol-version',
- '../../devtools/protocol.json',
- ],
- 'outputs': [
- '<(blink_platform_output_dir)/inspector_protocol/InspectorProtocolVersion.h',
- ],
- 'action': [
- 'python',
- 'generate-inspector-protocol-version',
- '-o',
- '<@(_outputs)',
- '<@(_inputs)'
- ],
- 'message': 'Validate inspector protocol for backwards compatibility and generate version file',
- }
- ]
- },
- ], # targets
-}

Powered by Google App Engine
This is Rietveld 408576698