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("//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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 ":cast_shell_common", | 216 ":cast_shell_common", |
217 ":cast_shell_media", | 217 ":cast_shell_media", |
218 "//build/config/sanitizers:deps", | 218 "//build/config/sanitizers:deps", |
219 "//chromecast/app", | 219 "//chromecast/app", |
220 "//content/public/app:both", | 220 "//content/public/app:both", |
221 ] | 221 ] |
222 | 222 |
223 if (chromecast_branding != "public") { | 223 if (chromecast_branding != "public") { |
224 deps += [ "//chromecast/internal:cast_shell_internal" ] | 224 deps += [ "//chromecast/internal:cast_shell_internal" ] |
225 } | 225 } |
226 | |
227 # Whole archiving libgcc.a and libstdc++ is needed if dynamic share libs are | |
228 # used, see b/25566835. | |
229 configs += [ "//build/config/chromecast:executable_whole_archive_config" ] | |
230 } | 226 } |
231 | 227 |
232 repack("cast_shell_pak") { | 228 repack("cast_shell_pak") { |
233 sources = [ | 229 sources = [ |
234 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, | 230 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, |
235 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 231 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
236 "$root_gen_dir/chromecast/app/shell_resources.pak", | 232 "$root_gen_dir/chromecast/app/shell_resources.pak", |
237 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", | 233 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", |
238 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 234 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
239 "$root_gen_dir/content/content_resources.pak", | 235 "$root_gen_dir/content/content_resources.pak", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 apk_name = "CastShell" | 331 apk_name = "CastShell" |
336 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 332 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
337 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" | 333 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" |
338 deps = [ | 334 deps = [ |
339 ":cast_shell_apk_assets", | 335 ":cast_shell_apk_assets", |
340 "//chromecast/android:libcast_shell_android", | 336 "//chromecast/android:libcast_shell_android", |
341 "//chromecast/browser/android:cast_shell_java", | 337 "//chromecast/browser/android:cast_shell_java", |
342 ] | 338 ] |
343 } | 339 } |
344 } | 340 } |
OLD | NEW |