| Index: third_party/WebKit/Source/core/inspector/BUILD.gn
|
| diff --git a/third_party/WebKit/Source/core/inspector/BUILD.gn b/third_party/WebKit/Source/core/inspector/BUILD.gn
|
| index 83e1f4737d4ceffcabf34e629f185930db1123c5..916f47d678b33e0d7121be89cba5044d109681bb 100644
|
| --- a/third_party/WebKit/Source/core/inspector/BUILD.gn
|
| +++ b/third_party/WebKit/Source/core/inspector/BUILD.gn
|
| @@ -28,7 +28,8 @@ action("protocol_sources") {
|
|
|
| args = [
|
| rebase_path(protocol_file, root_build_dir),
|
| - "--output_dir", rebase_path(blink_core_output_dir, root_build_dir),
|
| + "--output_dir",
|
| + rebase_path(blink_core_output_dir, root_build_dir),
|
| ]
|
|
|
| deps = [
|
| @@ -54,19 +55,25 @@ action("instrumentation_sources") {
|
|
|
| args = [
|
| rebase_path("InspectorInstrumentation.idl", root_build_dir),
|
| - "--output_dir", rebase_path(blink_core_output_dir, root_build_dir),
|
| + "--output_dir",
|
| + rebase_path(blink_core_output_dir, root_build_dir),
|
| ]
|
| }
|
|
|
| action("protocol_version") {
|
| script = "generate-inspector-protocol-version"
|
|
|
| - inputs = [ protocol_file ]
|
| + inputs = [
|
| + protocol_file,
|
| + ]
|
| output_file = "$blink_core_output_dir/InspectorProtocolVersion.h"
|
| - outputs = [ output_file ]
|
| + outputs = [
|
| + output_file,
|
| + ]
|
|
|
| args = [
|
| - "-o", rebase_path(output_file, root_build_dir),
|
| + "-o",
|
| + rebase_path(output_file, root_build_dir),
|
| rebase_path(protocol_file, root_build_dir),
|
| ]
|
| }
|
|
|