| 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 # GYP version: ui/resources/ui_resources.gyp:ui_resources | 8 # GYP version: ui/resources/ui_resources.gyp:ui_resources |
| 9 group("resources") { | 9 group("resources") { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 grit("ui_unscaled_resources_grd") { | 29 grit("ui_unscaled_resources_grd") { |
| 30 source = "ui_unscaled_resources.grd" | 30 source = "ui_unscaled_resources.grd" |
| 31 use_qualified_include = true | 31 use_qualified_include = true |
| 32 outputs = [ | 32 outputs = [ |
| 33 "grit/ui_unscaled_resources.h", | 33 "grit/ui_unscaled_resources.h", |
| 34 | 34 |
| 35 # TODO(GYP_GONE) when GYP is gone, this line should be deleted, and the grit | 35 # TODO(GYP_GONE) when GYP is gone, this line should be deleted, and the grit |
| 36 # file updated to no longer list this as an output. We use resource bundles | 36 # file updated to no longer list this as an output. We use resource bundles |
| 37 # rather than .rc files, but the GYP build still expects this file to | 37 # rather than .rc files, but the GYP build still expects this file to |
| 38 # exist. | 38 # exist. |
| 39 "ui_unscaled_resources.rc", | 39 #"ui_unscaled_resources.rc", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 grit("webui_resources_grd") { | 43 grit("webui_resources_grd") { |
| 44 source = "../webui/resources/webui_resources.grd" | 44 source = "../webui/resources/webui_resources.grd" |
| 45 outputs = [ | 45 outputs = [ |
| 46 "grit/webui_resources.h", | 46 "grit/webui_resources.h", |
| 47 "grit/webui_resources_map.cc", | 47 "grit/webui_resources_map.cc", |
| 48 "grit/webui_resources_map.h", | 48 "grit/webui_resources_map.h", |
| 49 "webui_resources.pak", | 49 "webui_resources.pak", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 221 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 222 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 222 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 223 ] | 223 ] |
| 224 | 224 |
| 225 output = "$root_out_dir/ui/en.lproj/locale.pak" | 225 output = "$root_out_dir/ui/en.lproj/locale.pak" |
| 226 | 226 |
| 227 deps = [ | 227 deps = [ |
| 228 "//ui/strings", | 228 "//ui/strings", |
| 229 ] | 229 ] |
| 230 } | 230 } |
| OLD | NEW |