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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 config_file, | 53 config_file, |
54 ] | 54 ] |
55 | 55 |
56 # These are relative to $target_gen_dir. | 56 # These are relative to $target_gen_dir. |
57 outputs = [ | 57 outputs = [ |
58 "protocol/dom.cc", | 58 "protocol/dom.cc", |
59 "protocol/dom.h", | 59 "protocol/dom.h", |
60 "protocol/emulation.cc", | 60 "protocol/emulation.cc", |
61 "protocol/emulation.h", | 61 "protocol/emulation.h", |
62 "protocol/forward.h", | 62 "protocol/forward.h", |
| 63 "protocol/input.cc", |
| 64 "protocol/input.h", |
63 "protocol/inspector.cc", | 65 "protocol/inspector.cc", |
64 "protocol/inspector.h", | 66 "protocol/inspector.h", |
65 "protocol/io.cc", | 67 "protocol/io.cc", |
66 "protocol/io.h", | 68 "protocol/io.h", |
67 "protocol/memory.cc", | 69 "protocol/memory.cc", |
68 "protocol/memory.h", | 70 "protocol/memory.h", |
69 "protocol/network.cc", | 71 "protocol/network.cc", |
70 "protocol/network.h", | 72 "protocol/network.h", |
71 "protocol/page.cc", | 73 "protocol/page.cc", |
72 "protocol/page.h", | 74 "protocol/page.h", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 ] | 107 ] |
106 | 108 |
107 outputs = [ | 109 outputs = [ |
108 "$target_gen_dir/protocol/devtools_protocol_dispatcher.cc", | 110 "$target_gen_dir/protocol/devtools_protocol_dispatcher.cc", |
109 "$target_gen_dir/protocol/devtools_protocol_dispatcher.h", | 111 "$target_gen_dir/protocol/devtools_protocol_dispatcher.h", |
110 ] | 112 ] |
111 | 113 |
112 args = | 114 args = |
113 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) | 115 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) |
114 } | 116 } |
OLD | NEW |