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

Unified Diff: chrome/browser/devtools/BUILD.gn

Issue 558613002: [DevTools] Explicitly add Tethering domain to browser protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/devtools/device/port_forwarding_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/devtools/BUILD.gn
diff --git a/chrome/browser/devtools/BUILD.gn b/chrome/browser/devtools/BUILD.gn
index 7565b9e8b5c1d5bc4599b33d0821cbd1548fbf08..dce1eaa4e1452e2c50c3be81cb9cd71151da1fb9 100644
--- a/chrome/browser/devtools/BUILD.gn
+++ b/chrome/browser/devtools/BUILD.gn
@@ -6,7 +6,8 @@ action("devtools_protocol_constants") {
script = "//content/public/browser/devtools_protocol_constants_generator.py"
blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json"
- inputs = [ blink_protocol ]
+ browser_protocol = "//content/browser/devtools/browser_protocol.json"
+ inputs = [ blink_protocol, browser_protocol ]
outputs = [
"$target_gen_dir/devtools_protocol_constants.cc",
"$target_gen_dir/devtools_protocol_constants.h",
@@ -15,6 +16,7 @@ action("devtools_protocol_constants") {
args = [ "chrome" ]
args += rebase_path(outputs, root_build_dir)
args += [ rebase_path(blink_protocol, root_build_dir) ]
+ args += [ rebase_path(browser_protocol, root_build_dir) ]
}
# GYP version: chrome/chrome_debugger.gypi:debugger
« no previous file with comments | « no previous file | chrome/browser/devtools/device/port_forwarding_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698