| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 import("//build_overrides/v8.gni") | 7 import("//build_overrides/v8.gni") |
| 8 import("//chrome/android/chrome_public_apk_tmpl.gni") | 8 import("//chrome/android/chrome_public_apk_tmpl.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 deps = [ | 374 deps = [ |
| 375 ":chrome_java_resources", | 375 ":chrome_java_resources", |
| 376 "//apk_minter:apk_minter_resources", | 376 "//apk_minter:apk_minter_resources", |
| 377 ] | 377 ] |
| 378 } | 378 } |
| 379 | 379 |
| 380 android_assets("chrome_public_apk_assets") { | 380 android_assets("chrome_public_apk_assets") { |
| 381 sources = chrome_android_paks_gypi.chrome_android_pak_input_resources | 381 sources = chrome_android_paks_gypi.chrome_android_pak_input_resources |
| 382 sources += [ | 382 sources += [ |
| 383 "$root_build_dir/resources.pak", | 383 "$root_build_dir/resources.pak", |
| 384 "//apk_minter/assets/MintingExample.template.apk", | 384 "//apk_minter/assets/WebApk.template.apk", |
| 385 "//apk_minter/assets/minted-apk-release-key-bks", | 385 "//apk_minter/assets/minted-apk-release-key-bks", |
| 386 ] | 386 ] |
| 387 disable_compression = true | 387 disable_compression = true |
| 388 | 388 |
| 389 deps = [ | 389 deps = [ |
| 390 "//apk_minter:apk_minter_lib", | 390 "//apk_minter:apk_minter_lib", |
| 391 "//chrome:packed_extra_resources", | 391 "//chrome:packed_extra_resources", |
| 392 "//chrome:packed_resources", | 392 "//chrome:packed_resources", |
| 393 "//third_party/icu:icu_assets", | 393 "//third_party/icu:icu_assets", |
| 394 "//v8:v8_external_startup_data_assets", | 394 "//v8:v8_external_startup_data_assets", |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 610 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 611 apk_name = "ChromeSyncShellTest" | 611 apk_name = "ChromeSyncShellTest" |
| 612 apk_under_test = ":chrome_sync_shell_apk" | 612 apk_under_test = ":chrome_sync_shell_apk" |
| 613 android_manifest = chrome_sync_shell_test_apk_manifest | 613 android_manifest = chrome_sync_shell_test_apk_manifest |
| 614 deps = [ | 614 deps = [ |
| 615 ":chrome_sync_shell_test_apk_java", | 615 ":chrome_sync_shell_test_apk_java", |
| 616 ":chrome_sync_shell_test_apk_manifest", | 616 ":chrome_sync_shell_test_apk_manifest", |
| 617 ] | 617 ] |
| 618 proguard_enabled = !is_debug | 618 proguard_enabled = !is_debug |
| 619 } | 619 } |
| OLD | NEW |