Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(307)

Side by Side Diff: chrome/android/BUILD.gn

Issue 2011613003: Upstream: Extract "WebAPK service" implementation from Chrome APK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 } 379 }
380 380
381 android_assets("chrome_public_apk_assets") { 381 android_assets("chrome_public_apk_assets") {
382 sources = chrome_android_paks_gypi.chrome_android_pak_input_resources 382 sources = chrome_android_paks_gypi.chrome_android_pak_input_resources
383 sources += [ "$root_build_dir/resources.pak" ] 383 sources += [ "$root_build_dir/resources.pak" ]
384 disable_compression = true 384 disable_compression = true
385 385
386 deps = [ 386 deps = [
387 "//chrome:packed_extra_resources", 387 "//chrome:packed_extra_resources",
388 "//chrome:packed_resources", 388 "//chrome:packed_resources",
389 "//chrome/android/webapk/libs/runtime_library:runtime_library_assets",
389 "//third_party/icu:icu_assets", 390 "//third_party/icu:icu_assets",
390 "//v8:v8_external_startup_data_assets", 391 "//v8:v8_external_startup_data_assets",
391 ] 392 ]
392 } 393 }
393 394
394 # GYP: //chrome/android/chrome_apk.gyp:chrome_apk_manifest 395 # GYP: //chrome/android/chrome_apk.gyp:chrome_apk_manifest
395 jinja_template("chrome_public_apk_manifest") { 396 jinja_template("chrome_public_apk_manifest") {
396 input = "java/AndroidManifest.xml" 397 input = "java/AndroidManifest.xml"
397 output = "$root_gen_dir/chrome_public_apk_manifest/AndroidManifest.xml" 398 output = "$root_gen_dir/chrome_public_apk_manifest/AndroidManifest.xml"
398 variables = chrome_public_jinja_variables 399 variables = chrome_public_jinja_variables
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 instrumentation_test_apk("chrome_sync_shell_test_apk") { 599 instrumentation_test_apk("chrome_sync_shell_test_apk") {
599 apk_name = "ChromeSyncShellTest" 600 apk_name = "ChromeSyncShellTest"
600 apk_under_test = ":chrome_sync_shell_apk" 601 apk_under_test = ":chrome_sync_shell_apk"
601 android_manifest = chrome_sync_shell_test_apk_manifest 602 android_manifest = chrome_sync_shell_test_apk_manifest
602 deps = [ 603 deps = [
603 ":chrome_sync_shell_test_apk_java", 604 ":chrome_sync_shell_test_apk_java",
604 ":chrome_sync_shell_test_apk_manifest", 605 ":chrome_sync_shell_test_apk_manifest",
605 ] 606 ]
606 proguard_enabled = !is_debug 607 proguard_enabled = !is_debug
607 } 608 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698