| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "protocol/io.cc", | 67 "protocol/io.cc", |
| 68 "protocol/io.h", | 68 "protocol/io.h", |
| 69 "protocol/memory.cc", | 69 "protocol/memory.cc", |
| 70 "protocol/memory.h", | 70 "protocol/memory.h", |
| 71 "protocol/network.cc", | 71 "protocol/network.cc", |
| 72 "protocol/network.h", | 72 "protocol/network.h", |
| 73 "protocol/page.cc", | 73 "protocol/page.cc", |
| 74 "protocol/page.h", | 74 "protocol/page.h", |
| 75 "protocol/protocol.cc", | 75 "protocol/protocol.cc", |
| 76 "protocol/protocol.h", | 76 "protocol/protocol.h", |
| 77 "protocol/runtime.cc", |
| 78 "protocol/runtime.h", |
| 77 "protocol/schema.cc", | 79 "protocol/schema.cc", |
| 78 "protocol/schema.h", | 80 "protocol/schema.h", |
| 79 "protocol/security.cc", | 81 "protocol/security.cc", |
| 80 "protocol/security.h", | 82 "protocol/security.h", |
| 81 "protocol/service_worker.cc", | 83 "protocol/service_worker.cc", |
| 82 "protocol/service_worker.h", | 84 "protocol/service_worker.h", |
| 83 "protocol/storage.cc", | 85 "protocol/storage.cc", |
| 84 "protocol/storage.h", | 86 "protocol/storage.h", |
| 85 "protocol/system_info.cc", | 87 "protocol/system_info.cc", |
| 86 "protocol/system_info.h", | 88 "protocol/system_info.h", |
| 87 "protocol/target.cc", | 89 "protocol/target.cc", |
| 88 "protocol/target.h", | 90 "protocol/target.h", |
| 89 "protocol/tethering.cc", | 91 "protocol/tethering.cc", |
| 90 "protocol/tethering.h", | 92 "protocol/tethering.h", |
| 91 "protocol/tracing.cc", | 93 "protocol/tracing.cc", |
| 92 "protocol/tracing.h", | 94 "protocol/tracing.h", |
| 93 ] | 95 ] |
| 94 } | 96 } |
| OLD | NEW |