| 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("//tools/grit/repack.gni") | 6 import("//tools/grit/repack.gni") |
| 7 | 7 |
| 8 group("resources") { | 8 group("resources") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":ui_resources_grd", | 10 ":ui_resources_grd", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "ui_resources_200_percent.pak", | 23 "ui_resources_200_percent.pak", |
| 24 "ui_resources_300_percent.pak", | 24 "ui_resources_300_percent.pak", |
| 25 ] | 25 ] |
| 26 } | 26 } |
| 27 | 27 |
| 28 grit("ui_unscaled_resources_grd") { | 28 grit("ui_unscaled_resources_grd") { |
| 29 source = "ui_unscaled_resources.grd" | 29 source = "ui_unscaled_resources.grd" |
| 30 use_qualified_include = true | 30 use_qualified_include = true |
| 31 outputs = [ | 31 outputs = [ |
| 32 "grit/ui_unscaled_resources.h", | 32 "grit/ui_unscaled_resources.h", |
| 33 | |
| 34 # TODO(GYP_GONE) when GYP is gone, this line should be deleted, and the grit | |
| 35 # file updated to no longer list this as an output. We use resource bundles | |
| 36 # rather than .rc files, but the GYP build still expects this file to | |
| 37 # exist. | |
| 38 "ui_unscaled_resources.rc", | 33 "ui_unscaled_resources.rc", |
| 39 ] | 34 ] |
| 40 } | 35 } |
| 41 | 36 |
| 42 grit("webui_resources_grd") { | 37 grit("webui_resources_grd") { |
| 43 source = "../webui/resources/webui_resources.grd" | 38 source = "../webui/resources/webui_resources.grd" |
| 44 outputs = [ | 39 outputs = [ |
| 45 "grit/webui_resources.h", | 40 "grit/webui_resources.h", |
| 46 "grit/webui_resources_map.cc", | 41 "grit/webui_resources_map.cc", |
| 47 "grit/webui_resources_map.h", | 42 "grit/webui_resources_map.h", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 211 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 217 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 212 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 218 ] | 213 ] |
| 219 | 214 |
| 220 output = "$root_out_dir/ui/en.lproj/locale.pak" | 215 output = "$root_out_dir/ui/en.lproj/locale.pak" |
| 221 | 216 |
| 222 deps = [ | 217 deps = [ |
| 223 "//ui/strings", | 218 "//ui/strings", |
| 224 ] | 219 ] |
| 225 } | 220 } |
| OLD | NEW |