Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: chromecast/BUILD.gn

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 ] 196 ]
197 197
198 output = "$root_out_dir/assets/cast_shell.pak" 198 output = "$root_out_dir/assets/cast_shell.pak"
199 199
200 deps = [ 200 deps = [
201 "//chromecast/app:resources", 201 "//chromecast/app:resources",
202 "//content:resources", 202 "//content:resources",
203 "//content/app/resources", 203 "//content/app/resources",
204 "//content/app/strings", 204 "//content/app/strings",
205 "//net:net_resources", 205 "//net:net_resources",
206 "//third_party/WebKit/public:image_resources_grit",
206 "//third_party/WebKit/public:resources", 207 "//third_party/WebKit/public:resources",
207 "//third_party/WebKit/public:image_resources_grit",
208 "//ui/resources", 208 "//ui/resources",
209 "//ui/strings", 209 "//ui/strings",
210 ] 210 ]
211 211
212 if (chromecast_branding != "public") { 212 if (chromecast_branding != "public") {
213 sources += 213 sources +=
214 [ "$root_gen_dir/chromecast/internal/shell/app/sound_resources.pak" ] 214 [ "$root_gen_dir/chromecast/internal/shell/app/sound_resources.pak" ]
215 215
216 deps += [ "//chromecast/internal/shell/app:chromecast_sound_resources" ] 216 deps += [ "//chromecast/internal/shell/app:chromecast_sound_resources" ]
217 217
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 chromecast_branding == "google") 264 chromecast_branding == "google")
265 args = [ 265 args = [
266 "-b", 266 "-b",
267 "$chromecast_branding", 267 "$chromecast_branding",
268 "-g", 268 "-g",
269 rebase_path("$root_gen_dir/chromecast_strings"), 269 rebase_path("$root_gen_dir/chromecast_strings"),
270 "-x", 270 "-x",
271 rebase_path("$root_out_dir/chromecast_locales"), 271 rebase_path("$root_out_dir/chromecast_locales"),
272 ] + locales 272 ] + locales
273 } 273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698