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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 if (is_chromeos) { | 100 if (is_chromeos) { |
101 sources += [ | 101 sources += [ |
102 "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_100_percent.pak
", | 102 "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_100_percent.pak
", |
103 "$root_gen_dir/ui/chromeos/strings/ui_chromeos_strings_en-US.pak", | 103 "$root_gen_dir/ui/chromeos/strings/ui_chromeos_strings_en-US.pak", |
104 ] | 104 ] |
105 } | 105 } |
106 | 106 |
107 output = "$root_out_dir/ui_test.pak" | 107 output = "$root_out_dir/ui_test.pak" |
108 | 108 |
109 deps = [ | 109 deps = [ |
110 "//third_party/WebKit/public:resources_grit", | |
111 "//ui/resources", | 110 "//ui/resources", |
112 "//ui/strings", | 111 "//ui/strings", |
113 ] | 112 ] |
114 | 113 |
| 114 if (!is_ios) { |
| 115 deps += [ "//third_party/WebKit/public:resources_grit" ] |
| 116 } |
| 117 |
115 if (!is_mac) { | 118 if (!is_mac) { |
116 deps += [ ":copy_ui_resources_100_percent" ] | 119 deps += [ ":copy_ui_resources_100_percent" ] |
117 } | 120 } |
118 | 121 |
119 if (is_chromeos) { | 122 if (is_chromeos) { |
120 deps += [ | 123 deps += [ |
121 "//ui/chromeos/resources", | 124 "//ui/chromeos/resources", |
122 "//ui/chromeos/strings", | 125 "//ui/chromeos/strings", |
123 ] | 126 ] |
124 } | 127 } |
(...skipping 21 matching lines...) Expand all Loading... |
146 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 149 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
147 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 150 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
148 ] | 151 ] |
149 | 152 |
150 output = "$root_out_dir/ui/en.lproj/locale.pak" | 153 output = "$root_out_dir/ui/en.lproj/locale.pak" |
151 | 154 |
152 deps = [ | 155 deps = [ |
153 "//ui/strings", | 156 "//ui/strings", |
154 ] | 157 ] |
155 } | 158 } |
OLD | NEW |