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

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

Issue 1981473002: Upstream: DexOptimizer and DexLoader classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 543
544 # GYP: //chrome/android/chrome_apk.gyp:chrome_public_test_apk 544 # GYP: //chrome/android/chrome_apk.gyp:chrome_public_test_apk
545 instrumentation_test_apk("chrome_public_test_apk") { 545 instrumentation_test_apk("chrome_public_test_apk") {
546 apk_name = "ChromePublicTest" 546 apk_name = "ChromePublicTest"
547 apk_under_test = ":chrome_public_apk" 547 apk_under_test = ":chrome_public_apk"
548 android_manifest = chrome_public_test_apk_manifest 548 android_manifest = chrome_public_test_apk_manifest
549 549
550 deps = [ 550 deps = [
551 ":chrome_public_test_apk_manifest", 551 ":chrome_public_test_apk_manifest",
552 ":chrome_test_java", 552 ":chrome_test_java",
553 "//chrome/android/webapk/shell_apk:shell_apk_javatests",
Yaron 2016/05/16 20:39:58 This is sufficient for the tests to get picked up
jbudorick 2016/05/16 20:57:41 yep
553 ] 554 ]
554 additional_apks = [ 555 additional_apks = [
556 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk ",
Yaron 2016/05/16 20:39:58 I think this is fine and I think we discussed with
jbudorick 2016/05/16 20:57:41 Yeah, I think it's fine for us to use chrome_publi
555 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support _apk", 557 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support _apk",
556 "//net/android:net_test_support_apk", 558 "//net/android:net_test_support_apk",
557 ] 559 ]
558 isolate_file = "../chrome_public_test_apk.isolate" 560 isolate_file = "../chrome_public_test_apk.isolate"
559 proguard_enabled = !is_debug 561 proguard_enabled = !is_debug
560 } 562 }
561 563
562 android_library("chrome_sync_shell_test_apk_java") { 564 android_library("chrome_sync_shell_test_apk_java") {
563 testonly = true 565 testonly = true
564 566
(...skipping 24 matching lines...) Expand all
589 instrumentation_test_apk("chrome_sync_shell_test_apk") { 591 instrumentation_test_apk("chrome_sync_shell_test_apk") {
590 apk_name = "ChromeSyncShellTest" 592 apk_name = "ChromeSyncShellTest"
591 apk_under_test = ":chrome_sync_shell_apk" 593 apk_under_test = ":chrome_sync_shell_apk"
592 android_manifest = chrome_sync_shell_test_apk_manifest 594 android_manifest = chrome_sync_shell_test_apk_manifest
593 deps = [ 595 deps = [
594 ":chrome_sync_shell_test_apk_java", 596 ":chrome_sync_shell_test_apk_java",
595 ":chrome_sync_shell_test_apk_manifest", 597 ":chrome_sync_shell_test_apk_manifest",
596 ] 598 ]
597 proguard_enabled = !is_debug 599 proguard_enabled = !is_debug
598 } 600 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698