OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//chromecast/build/tests/cast_test.gni") | 8 import("//chromecast/build/tests/cast_test.gni") |
9 import("//chromecast/chromecast.gni") | 9 import("//chromecast/chromecast.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 ] | 193 ] |
194 | 194 |
195 output = "$root_out_dir/assets/cast_shell.pak" | 195 output = "$root_out_dir/assets/cast_shell.pak" |
196 | 196 |
197 deps = [ | 197 deps = [ |
198 "//chromecast/app:resources", | 198 "//chromecast/app:resources", |
199 "//content:resources", | 199 "//content:resources", |
200 "//content/app/resources", | 200 "//content/app/resources", |
201 "//content/app/strings", | 201 "//content/app/strings", |
202 "//net:net_resources", | 202 "//net:net_resources", |
| 203 "//third_party/WebKit/public:image_resources_grit", |
203 "//third_party/WebKit/public:resources", | 204 "//third_party/WebKit/public:resources", |
204 "//third_party/WebKit/public:image_resources_grit", | |
205 "//ui/resources", | 205 "//ui/resources", |
206 "//ui/strings", | 206 "//ui/strings", |
207 ] | 207 ] |
208 | 208 |
209 if (chromecast_branding != "public") { | 209 if (chromecast_branding != "public") { |
210 sources += | 210 sources += |
211 [ "$root_gen_dir/chromecast/internal/shell/app/sound_resources.pak" ] | 211 [ "$root_gen_dir/chromecast/internal/shell/app/sound_resources.pak" ] |
212 | 212 |
213 deps += [ "//chromecast/internal/shell/app:chromecast_sound_resources" ] | 213 deps += [ "//chromecast/internal/shell/app:chromecast_sound_resources" ] |
214 | 214 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 chromecast_branding == "google") | 261 chromecast_branding == "google") |
262 args = [ | 262 args = [ |
263 "-b", | 263 "-b", |
264 "$chromecast_branding", | 264 "$chromecast_branding", |
265 "-g", | 265 "-g", |
266 rebase_path("$root_gen_dir/chromecast_strings"), | 266 rebase_path("$root_gen_dir/chromecast_strings"), |
267 "-x", | 267 "-x", |
268 rebase_path("$root_out_dir/chromecast_locales"), | 268 rebase_path("$root_out_dir/chromecast_locales"), |
269 ] + locales | 269 ] + locales |
270 } | 270 } |
OLD | NEW |