| 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/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build_overrides/v8.gni") |
| 9 import("//chromecast/build/tests/cast_test.gni") | 10 import("//chromecast/build/tests/cast_test.gni") |
| 10 import("//chromecast/chromecast.gni") | 11 import("//chromecast/chromecast.gni") |
| 11 import("//media/media_options.gni") | 12 import("//media/media_options.gni") |
| 12 import("//tools/grit/repack.gni") | 13 import("//tools/grit/repack.gni") |
| 13 import("//ui/ozone/ozone.gni") | 14 import("//ui/ozone/ozone.gni") |
| 14 import("//v8/gni/v8.gni") | |
| 15 | 15 |
| 16 if (is_android) { | 16 if (is_android) { |
| 17 import("//build/config/android/rules.gni") | 17 import("//build/config/android/rules.gni") |
| 18 } | 18 } |
| 19 | 19 |
| 20 config("playready_config") { | 20 config("playready_config") { |
| 21 if (use_playready) { | 21 if (use_playready) { |
| 22 defines = [ "PLAYREADY_CDM_AVAILABLE" ] | 22 defines = [ "PLAYREADY_CDM_AVAILABLE" ] |
| 23 } | 23 } |
| 24 } | 24 } |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 apk_name = "CastShell" | 327 apk_name = "CastShell" |
| 328 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 328 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
| 329 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" | 329 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" |
| 330 deps = [ | 330 deps = [ |
| 331 ":cast_shell_apk_assets", | 331 ":cast_shell_apk_assets", |
| 332 "//chromecast/android:libcast_shell_android", | 332 "//chromecast/android:libcast_shell_android", |
| 333 "//chromecast/browser/android:cast_shell_java", | 333 "//chromecast/browser/android:cast_shell_java", |
| 334 ] | 334 ] |
| 335 } | 335 } |
| 336 } | 336 } |
| OLD | NEW |