| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chromecast/build/tests/cast_test.gni") | 10 import("//chromecast/build/tests/cast_test.gni") |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 if (chromecast_branding != "public") { | 314 if (chromecast_branding != "public") { |
| 315 deps += [ "//chromecast/internal:cast_shell_internal" ] | 315 deps += [ "//chromecast/internal:cast_shell_internal" ] |
| 316 } | 316 } |
| 317 } | 317 } |
| 318 | 318 |
| 319 repack("cast_shell_pak") { | 319 repack("cast_shell_pak") { |
| 320 sources = [ | 320 sources = [ |
| 321 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, | 321 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, |
| 322 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 322 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
| 323 "$root_gen_dir/chromecast/app/shell_resources.pak", | 323 "$root_gen_dir/chromecast/app/shell_resources.pak", |
| 324 "$root_gen_dir/chromecast/browser/cast_browser_resources.pak", |
| 324 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", | 325 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", |
| 325 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 326 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
| 326 "$root_gen_dir/content/content_resources.pak", | 327 "$root_gen_dir/content/content_resources.pak", |
| 327 "$root_gen_dir/net/net_resources.pak", | 328 "$root_gen_dir/net/net_resources.pak", |
| 328 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 329 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 329 "$root_gen_dir/ui/resources/webui_resources.pak", | 330 "$root_gen_dir/ui/resources/webui_resources.pak", |
| 330 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 331 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 331 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 332 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 332 ] | 333 ] |
| 333 | 334 |
| 334 output = "$root_out_dir/assets/cast_shell.pak" | 335 output = "$root_out_dir/assets/cast_shell.pak" |
| 335 | 336 |
| 336 deps = [ | 337 deps = [ |
| 337 "//chromecast/app:resources", | 338 "//chromecast/app:resources", |
| 339 "//chromecast/browser:resources", |
| 338 "//content:resources", | 340 "//content:resources", |
| 339 "//content/app/resources", | 341 "//content/app/resources", |
| 340 "//content/app/strings", | 342 "//content/app/strings", |
| 341 "//net:net_resources", | 343 "//net:net_resources", |
| 342 "//third_party/WebKit/public:image_resources_grit", | 344 "//third_party/WebKit/public:image_resources_grit", |
| 343 "//third_party/WebKit/public:resources", | 345 "//third_party/WebKit/public:resources", |
| 344 "//ui/resources", | 346 "//ui/resources", |
| 345 "//ui/strings", | 347 "//ui/strings", |
| 346 ] | 348 ] |
| 347 | 349 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 apk_name = "CastShell" | 431 apk_name = "CastShell" |
| 430 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 432 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
| 431 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" | 433 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" |
| 432 deps = [ | 434 deps = [ |
| 433 ":cast_shell_apk_assets", | 435 ":cast_shell_apk_assets", |
| 434 "//chromecast/android:libcast_shell_android", | 436 "//chromecast/android:libcast_shell_android", |
| 435 "//chromecast/browser/android:cast_shell_java", | 437 "//chromecast/browser/android:cast_shell_java", |
| 436 ] | 438 ] |
| 437 } | 439 } |
| 438 } | 440 } |
| OLD | NEW |