| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "protocol/network.cc", | 69 "protocol/network.cc", |
| 70 "protocol/network.h", | 70 "protocol/network.h", |
| 71 "protocol/page.cc", | 71 "protocol/page.cc", |
| 72 "protocol/page.h", | 72 "protocol/page.h", |
| 73 "protocol/protocol.cc", | 73 "protocol/protocol.cc", |
| 74 "protocol/protocol.h", | 74 "protocol/protocol.h", |
| 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", |
| 80 "protocol/service_worker.h", |
| 79 "protocol/storage.cc", | 81 "protocol/storage.cc", |
| 80 "protocol/storage.h", | 82 "protocol/storage.h", |
| 81 "protocol/system_info.cc", | 83 "protocol/system_info.cc", |
| 82 "protocol/system_info.h", | 84 "protocol/system_info.h", |
| 83 "protocol/tethering.cc", | 85 "protocol/tethering.cc", |
| 84 "protocol/tethering.h", | 86 "protocol/tethering.h", |
| 85 "protocol/tracing.cc", | 87 "protocol/tracing.cc", |
| 86 "protocol/tracing.h", | 88 "protocol/tracing.h", |
| 87 ] | 89 ] |
| 88 } | 90 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 101 ] | 103 ] |
| 102 | 104 |
| 103 outputs = [ | 105 outputs = [ |
| 104 "$target_gen_dir/protocol/devtools_protocol_dispatcher.cc", | 106 "$target_gen_dir/protocol/devtools_protocol_dispatcher.cc", |
| 105 "$target_gen_dir/protocol/devtools_protocol_dispatcher.h", | 107 "$target_gen_dir/protocol/devtools_protocol_dispatcher.h", |
| 106 ] | 108 ] |
| 107 | 109 |
| 108 args = | 110 args = |
| 109 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) | 111 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) |
| 110 } | 112 } |
| OLD | NEW |