OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 import("//third_party/inspector_protocol/inspector_protocol.gni") | 6 import("//third_party/inspector_protocol/inspector_protocol.gni") |
7 | 7 |
8 group("resources") { | 8 group("resources") { |
9 public_deps = [ | 9 public_deps = [ |
10 ":devtools_resources", | 10 ":devtools_resources", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "protocol/schema.cc", | 75 "protocol/schema.cc", |
76 "protocol/schema.h", | 76 "protocol/schema.h", |
77 "protocol/security.cc", | 77 "protocol/security.cc", |
78 "protocol/security.h", | 78 "protocol/security.h", |
79 "protocol/service_worker.cc", | 79 "protocol/service_worker.cc", |
80 "protocol/service_worker.h", | 80 "protocol/service_worker.h", |
81 "protocol/storage.cc", | 81 "protocol/storage.cc", |
82 "protocol/storage.h", | 82 "protocol/storage.h", |
83 "protocol/system_info.cc", | 83 "protocol/system_info.cc", |
84 "protocol/system_info.h", | 84 "protocol/system_info.h", |
| 85 "protocol/target.cc", |
| 86 "protocol/target.h", |
85 "protocol/tethering.cc", | 87 "protocol/tethering.cc", |
86 "protocol/tethering.h", | 88 "protocol/tethering.h", |
87 "protocol/tracing.cc", | 89 "protocol/tracing.cc", |
88 "protocol/tracing.h", | 90 "protocol/tracing.h", |
89 ] | 91 ] |
90 } | 92 } |
91 | 93 |
92 action("gen_devtools_protocol_handler") { | 94 action("gen_devtools_protocol_handler") { |
93 visibility = [ "//content/browser" ] | 95 visibility = [ "//content/browser" ] |
94 deps = [ | 96 deps = [ |
95 "//third_party/WebKit/Source/core/inspector:protocol_version", | 97 "//third_party/WebKit/Source/core/inspector:protocol_version", |
96 ] | 98 ] |
97 script = "//content/browser/devtools/protocol/" + | 99 script = "//content/browser/devtools/protocol/" + |
98 "devtools_protocol_handler_generator.py" | 100 "devtools_protocol_handler_generator.py" |
99 | 101 |
100 blink_protocol = "$root_gen_dir/blink/core/inspector/protocol.json" | 102 blink_protocol = "$root_gen_dir/blink/core/inspector/protocol.json" |
101 inputs = [ | 103 inputs = [ |
102 blink_protocol, | 104 blink_protocol, |
103 ] | 105 ] |
104 | 106 |
105 outputs = [ | 107 outputs = [ |
106 "$target_gen_dir/protocol/devtools_protocol_dispatcher.cc", | 108 "$target_gen_dir/protocol/devtools_protocol_dispatcher.cc", |
107 "$target_gen_dir/protocol/devtools_protocol_dispatcher.h", | 109 "$target_gen_dir/protocol/devtools_protocol_dispatcher.h", |
108 ] | 110 ] |
109 | 111 |
110 args = | 112 args = |
111 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) | 113 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) |
112 } | 114 } |
OLD | NEW |