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

Side by Side Diff: third_party/hamcrest/BUILD.gn

Issue 2764003003: Do not obfuscate hamcrest classes (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/hamcrest/proguard.flags » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/rules.gni") 5 import("//build/config/android/rules.gni")
6 6
7 java_group("hamcrest_java") { 7 java_group("hamcrest_java") {
8 testonly = true 8 testonly = true
9 deps = [ 9 deps = [
10 ":hamcrest_core_java", 10 ":hamcrest_core_java",
11 ":hamcrest_integration_java", 11 ":hamcrest_integration_java",
12 ":hamcrest_library_java", 12 ":hamcrest_library_java",
13 ] 13 ]
14 } 14 }
15 15
16 java_prebuilt("hamcrest_core_java") { 16 java_prebuilt("hamcrest_core_java") {
17 supports_android = true 17 supports_android = true
18 testonly = true 18 testonly = true
19 jar_path = "lib/hamcrest-core-1.3.jar" 19 jar_path = "lib/hamcrest-core-1.3.jar"
20 proguard_configs = [ "//third_party/hamcrest/proguard.flags" ]
20 } 21 }
21 22
22 java_prebuilt("hamcrest_integration_java") { 23 java_prebuilt("hamcrest_integration_java") {
23 supports_android = true 24 supports_android = true
24 testonly = true 25 testonly = true
25 jar_path = "lib/hamcrest-integration-1.3.jar" 26 jar_path = "lib/hamcrest-integration-1.3.jar"
27 proguard_configs = [ "//third_party/hamcrest/proguard.flags" ]
26 } 28 }
27 29
28 java_prebuilt("hamcrest_library_java") { 30 java_prebuilt("hamcrest_library_java") {
29 supports_android = true 31 supports_android = true
30 testonly = true 32 testonly = true
31 jar_path = "lib/hamcrest-library-1.3.jar" 33 jar_path = "lib/hamcrest-library-1.3.jar"
34 proguard_configs = [ "//third_party/hamcrest/proguard.flags" ]
32 } 35 }
OLDNEW
« no previous file with comments | « no previous file | third_party/hamcrest/proguard.flags » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698