| 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 916f47d678b33e0d7121be89cba5044d109681bb..687a379614965eeebe4c420add8fbef59444abe7 100644
|
| --- a/third_party/WebKit/Source/core/inspector/BUILD.gn
|
| +++ b/third_party/WebKit/Source/core/inspector/BUILD.gn
|
| @@ -7,36 +7,6 @@ import("//third_party/WebKit/Source/core/core.gni")
|
|
|
| visibility = [ "//third_party/WebKit/Source/*" ]
|
|
|
| -protocol_file = "../../devtools/protocol.json"
|
| -
|
| -action("protocol_sources") {
|
| - script = "CodeGeneratorInspector.py"
|
| -
|
| - inputs = [
|
| - # The helper script imported by CodeGeneratorInspector.py.
|
| - "CodeGeneratorInspectorStrings.py",
|
| - protocol_file,
|
| - ]
|
| - outputs = [
|
| - "$blink_core_output_dir/InspectorBackendDispatcher.cpp",
|
| - "$blink_core_output_dir/InspectorBackendDispatcher.h",
|
| - "$blink_core_output_dir/InspectorFrontend.cpp",
|
| - "$blink_core_output_dir/InspectorFrontend.h",
|
| - "$blink_core_output_dir/InspectorTypeBuilder.cpp",
|
| - "$blink_core_output_dir/InspectorTypeBuilder.h",
|
| - ]
|
| -
|
| - args = [
|
| - rebase_path(protocol_file, root_build_dir),
|
| - "--output_dir",
|
| - rebase_path(blink_core_output_dir, root_build_dir),
|
| - ]
|
| -
|
| - deps = [
|
| - ":protocol_version",
|
| - ]
|
| -}
|
| -
|
| action("instrumentation_sources") {
|
| script = "CodeGeneratorInstrumentation.py"
|
|
|
| @@ -59,21 +29,3 @@ action("instrumentation_sources") {
|
| rebase_path(blink_core_output_dir, root_build_dir),
|
| ]
|
| }
|
| -
|
| -action("protocol_version") {
|
| - script = "generate-inspector-protocol-version"
|
| -
|
| - inputs = [
|
| - protocol_file,
|
| - ]
|
| - output_file = "$blink_core_output_dir/InspectorProtocolVersion.h"
|
| - outputs = [
|
| - output_file,
|
| - ]
|
| -
|
| - args = [
|
| - "-o",
|
| - rebase_path(output_file, root_build_dir),
|
| - rebase_path(protocol_file, root_build_dir),
|
| - ]
|
| -}
|
|
|