| 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 if (!is_android) { | 9 public_deps = [ |
| 10 public_deps = [ | 10 ":devtools_resources", |
| 11 ":devtools_resources", | 11 ] |
| 12 ] | |
| 13 } | |
| 14 } | 12 } |
| 15 | 13 |
| 16 grit("devtools_resources") { | 14 grit("devtools_resources") { |
| 17 source = "$root_gen_dir/devtools/devtools_resources.grd" | 15 source = "$root_gen_dir/devtools/devtools_resources.grd" |
| 18 source_is_generated = true | 16 source_is_generated = true |
| 19 | 17 |
| 20 outputs = [ | 18 outputs = [ |
| 21 "grit/devtools_resources.h", | 19 "grit/devtools_resources.h", |
| 22 "devtools_resources.pak", | 20 "devtools_resources.pak", |
| 23 "grit/devtools_resources_map.cc", | 21 "grit/devtools_resources_map.cc", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "protocol/system_info.cc", | 84 "protocol/system_info.cc", |
| 87 "protocol/system_info.h", | 85 "protocol/system_info.h", |
| 88 "protocol/target.cc", | 86 "protocol/target.cc", |
| 89 "protocol/target.h", | 87 "protocol/target.h", |
| 90 "protocol/tethering.cc", | 88 "protocol/tethering.cc", |
| 91 "protocol/tethering.h", | 89 "protocol/tethering.h", |
| 92 "protocol/tracing.cc", | 90 "protocol/tracing.cc", |
| 93 "protocol/tracing.h", | 91 "protocol/tracing.h", |
| 94 ] | 92 ] |
| 95 } | 93 } |
| OLD | NEW |