| OLD | NEW |
| 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 } |
| OLD | NEW |