| Index: content/browser/devtools/BUILD.gn
|
| diff --git a/content/browser/devtools/BUILD.gn b/content/browser/devtools/BUILD.gn
|
| index 75777316dcdd55df80f6fe5f3f91f62636fc11f7..19a4003bd7c048e0d6b05604cff68874bf5bedb7 100644
|
| --- a/content/browser/devtools/BUILD.gn
|
| +++ b/content/browser/devtools/BUILD.gn
|
| @@ -64,16 +64,16 @@ action("gen_devtools_protocol_handler") {
|
| "devtools_protocol_handler_generator.py"
|
|
|
| blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json"
|
| - inputs = [ blink_protocol ]
|
| + browser_protocol = "browser_protocol.json"
|
| + inputs = [ blink_protocol, browser_protocol ]
|
|
|
| outputs = [
|
| "$target_gen_dir/protocol/devtools_protocol_handler_impl.cc",
|
| "$target_gen_dir/protocol/devtools_protocol_handler_impl.h",
|
| ]
|
|
|
| - args = [
|
| - rebase_path(blink_protocol, root_build_dir),
|
| - ] + rebase_path(outputs, root_build_dir)
|
| + args = rebase_path(inputs, root_build_dir) +
|
| + rebase_path(outputs, root_build_dir)
|
| }
|
|
|
| source_set("devtools_protocol_constants") {
|
|
|