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 deps = [ | 10 deps = [ |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 # Depend on ui_test_pak instead of this one. | 72 # Depend on ui_test_pak instead of this one. |
73 visibility = [ ":ui_test_pak" ] | 73 visibility = [ ":ui_test_pak" ] |
74 | 74 |
75 sources = [ | 75 sources = [ |
76 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 76 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
77 "$root_gen_dir/ui/resources/webui_resources.pak", | 77 "$root_gen_dir/ui/resources/webui_resources.pak", |
78 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 78 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
79 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 79 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
80 ] | 80 ] |
81 | 81 |
82 if (is_chromeos) { | |
83 sources += { | |
oshima
2014/10/29 21:06:04
[] instead of {}
stevenjb
2014/10/29 21:21:05
Done.
| |
84 "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_100_percent.pak ", | |
85 "$root_gen_dir/ui/chromeos/strings/ui_chromeos_strings_en-US.pak", | |
86 } | |
87 } | |
88 | |
82 output = "$root_out_dir/ui_test.pak" | 89 output = "$root_out_dir/ui_test.pak" |
83 | 90 |
84 deps = [ | 91 deps = [ |
85 "//ui/resources", | 92 "//ui/resources", |
86 "//ui/strings", | 93 "//ui/strings", |
87 ] | 94 ] |
88 | 95 |
89 if (!is_mac) { | 96 if (!is_mac) { |
90 deps += [ ":copy_ui_resources_100_percent" ] | 97 deps += [ ":copy_ui_resources_100_percent" ] |
91 } | 98 } |
99 | |
100 if (is_chromeos) { | |
101 deps += { | |
oshima
2014/10/29 21:06:04
ditto
stevenjb
2014/10/29 21:21:05
Done.
| |
102 "//ui/chromeos/resources", | |
103 "//ui/chromeos/strings", | |
104 } | |
105 } | |
92 } | 106 } |
93 | 107 |
94 # Repack just the strings for the framework locales on Mac and iOS. This | 108 # Repack just the strings for the framework locales on Mac and iOS. This |
95 # emulates repack_locales.py, but just for en-US. Note ui_test.pak is not simply | 109 # emulates repack_locales.py, but just for en-US. Note ui_test.pak is not simply |
96 # copied, because it causes leaks from allocations within system libraries when | 110 # copied, because it causes leaks from allocations within system libraries when |
97 # trying to load non-string resources. http://crbug.com/413034. | 111 # trying to load non-string resources. http://crbug.com/413034. |
98 repack("repack_ui_test_mac_locale_pack") { | 112 repack("repack_ui_test_mac_locale_pack") { |
99 visibility = [ ":ui_test_pak" ] | 113 visibility = [ ":ui_test_pak" ] |
100 | 114 |
101 sources = [ | 115 sources = [ |
102 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 116 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
103 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 117 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
104 ] | 118 ] |
105 | 119 |
106 output = "$root_out_dir/ui/en.lproj/locale.pak" | 120 output = "$root_out_dir/ui/en.lproj/locale.pak" |
107 | 121 |
108 deps = [ | 122 deps = [ |
109 "//ui/strings", | 123 "//ui/strings", |
110 ] | 124 ] |
111 } | 125 } |
OLD | NEW |