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 group("hamcrest_java") { | 7 group("hamcrest_java") { |
8 public_deps = [ | 8 public_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 android_java_prebuilt("hamcrest_core_java") { | 15 java_prebuilt("hamcrest_core_java") { |
16 jar_path = "lib/hamcrest-core-1.3.jar" | 16 jar_path = "lib/hamcrest-core-1.3.jar" |
17 } | 17 } |
18 | 18 |
19 android_java_prebuilt("hamcrest_integration_java") { | 19 java_prebuilt("hamcrest_integration_java") { |
20 jar_path = "lib/hamcrest-integration-1.3.jar" | 20 jar_path = "lib/hamcrest-integration-1.3.jar" |
21 } | 21 } |
22 | 22 |
23 android_java_prebuilt("hamcrest_library_java") { | 23 java_prebuilt("hamcrest_library_java") { |
24 jar_path = "lib/hamcrest-library-1.3.jar" | 24 jar_path = "lib/hamcrest-library-1.3.jar" |
25 } | 25 } |
OLD | NEW |