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 deps = [ | 8 deps = [ |
9 ":hamcrest_core_java", | 9 ":hamcrest_core_java", |
10 ":hamcrest_integration_java", | 10 ":hamcrest_integration_java", |
11 ":hamcrest_library_java", | 11 ":hamcrest_library_java", |
12 ] | 12 ] |
13 } | 13 } |
14 | 14 |
15 java_prebuilt("hamcrest_core_java") { | 15 java_prebuilt("hamcrest_core_java") { |
| 16 supports_android = true |
16 jar_path = "lib/hamcrest-core-1.3.jar" | 17 jar_path = "lib/hamcrest-core-1.3.jar" |
17 } | 18 } |
18 | 19 |
19 java_prebuilt("hamcrest_integration_java") { | 20 java_prebuilt("hamcrest_integration_java") { |
| 21 supports_android = true |
20 jar_path = "lib/hamcrest-integration-1.3.jar" | 22 jar_path = "lib/hamcrest-integration-1.3.jar" |
21 } | 23 } |
22 | 24 |
23 java_prebuilt("hamcrest_library_java") { | 25 java_prebuilt("hamcrest_library_java") { |
| 26 supports_android = true |
24 jar_path = "lib/hamcrest-library-1.3.jar" | 27 jar_path = "lib/hamcrest-library-1.3.jar" |
25 } | 28 } |
OLD | NEW |