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/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//chromecast/build/tests/cast_test.gni") | 9 import("//chromecast/build/tests/cast_test.gni") |
10 import("//chromecast/chromecast.gni") | 10 import("//chromecast/chromecast.gni") |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 } | 371 } |
372 | 372 |
373 executable("cast_shell") { | 373 executable("cast_shell") { |
374 sources = [ | 374 sources = [ |
375 "app/cast_main.cc", | 375 "app/cast_main.cc", |
376 ] | 376 ] |
377 | 377 |
378 deps = [ | 378 deps = [ |
379 ":cast_shell_lib", | 379 ":cast_shell_lib", |
380 ":chromecast_locales_pak", | 380 ":chromecast_locales_pak", |
381 "//build/config/sanitizers:deps", | 381 "//build/config:exe_and_shlib_deps", |
382 "//chromecast/app", | 382 "//chromecast/app", |
383 "//content/public/app:both", | 383 "//content/public/app:both", |
384 ] | 384 ] |
385 } | 385 } |
386 | 386 |
387 repack("cast_shell_pak") { | 387 repack("cast_shell_pak") { |
388 sources = [ | 388 sources = [ |
389 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, | 389 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, |
390 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 390 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
391 "$root_gen_dir/chromecast/app/shell_resources.pak", | 391 "$root_gen_dir/chromecast/app/shell_resources.pak", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 490 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
491 | 491 |
492 deps = [ | 492 deps = [ |
493 ":cast_shell_apk_assets", | 493 ":cast_shell_apk_assets", |
494 "//base:base_java", | 494 "//base:base_java", |
495 "//chromecast/android:libcast_shell_android", | 495 "//chromecast/android:libcast_shell_android", |
496 "//chromecast/browser/android:cast_shell_java", | 496 "//chromecast/browser/android:cast_shell_java", |
497 ] | 497 ] |
498 } | 498 } |
499 } | 499 } |
OLD | NEW |