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

Side by Side Diff: build/config/android/internal_rules.gni

Issue 2195143002: [Android] Update all Robolectric tests to Robolectric 3.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add OfflinePageTestRunner.java to CL Created 4 years, 4 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/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 7
8 assert(is_android) 8 assert(is_android)
9 9
10 # These identify targets that have .build_config files (except for android_apk, 10 # These identify targets that have .build_config files (except for android_apk,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "//third_party/custom_tabs_client:custom_tabs_support_lib", 44 "//third_party/custom_tabs_client:custom_tabs_support_lib",
45 "//third_party/errorprone:chromium_errorprone", 45 "//third_party/errorprone:chromium_errorprone",
46 "//third_party/haha:haha", 46 "//third_party/haha:haha",
47 "//third_party/junit:hamcrest", 47 "//third_party/junit:hamcrest",
48 "//third_party/netty4:netty_all", 48 "//third_party/netty4:netty_all",
49 "//third_party/netty-tcnative:netty-tcnative", 49 "//third_party/netty-tcnative:netty-tcnative",
50 "//third_party/robolectric:android-all-4.3_r2-robolectric-0", 50 "//third_party/robolectric:android-all-4.3_r2-robolectric-0",
51 "//third_party/robolectric:android-all-5.0.0_r2-robolectric-1", 51 "//third_party/robolectric:android-all-5.0.0_r2-robolectric-1",
52 "//third_party/robolectric:json-20080701", 52 "//third_party/robolectric:json-20080701",
53 "//third_party/robolectric:tagsoup-1.2", 53 "//third_party/robolectric:tagsoup-1.2",
54 "//third_party/robolectric:shadows-core-3.0", 54 "//third_party/robolectric:shadows-core-3.0-21",
jbudorick 2016/08/01 13:52:04 nit: alpha
55 "//third_party/robolectric:shadows-core-3.0-18",
55 "//third_party/robolectric:shadows-multidex-3.0", 56 "//third_party/robolectric:shadows-multidex-3.0",
57 "//third_party/robolectric:shadows-play-services-3.0",
56 ] 58 ]
57 59
58 # Targets that match the whitelist but are not actually java targets. 60 # Targets that match the whitelist but are not actually java targets.
59 _java_target_blacklist = [ 61 _java_target_blacklist = [
60 "//chrome:packed_extra_resources", 62 "//chrome:packed_extra_resources",
61 "//chrome:packed_resources", 63 "//chrome:packed_resources",
62 "//remoting/android:remoting_android_raw_resources", 64 "//remoting/android:remoting_android_raw_resources",
63 "*:*_unpack_aar", 65 "*:*_unpack_aar",
64 ] 66 ]
65 67
(...skipping 2495 matching lines...) Expand 10 before | Expand all | Expand 10 after
2561 outputs = [ 2563 outputs = [
2562 depfile, 2564 depfile,
2563 invoker.out_manifest, 2565 invoker.out_manifest,
2564 ] 2566 ]
2565 inputs = [ 2567 inputs = [
2566 invoker.main_manifest, 2568 invoker.main_manifest,
2567 ] 2569 ]
2568 } 2570 }
2569 } 2571 }
2570 } 2572 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698