OLD | NEW |
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/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 | 6 |
7 # GYP: //testing/android/native_test.gyp:native_test_support | 7 # GYP: //testing/android/native_test.gyp:native_test_support |
8 source_set("native_test_support") { | 8 source_set("native_test_support") { |
9 testonly = true | 9 testonly = true |
10 sources = [ | 10 sources = [ |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 # GYP: //testing/android/native_test.gyp:native_test_java | 38 # GYP: //testing/android/native_test.gyp:native_test_java |
39 android_library("native_test_java") { | 39 android_library("native_test_java") { |
40 testonly = true | 40 testonly = true |
41 deps = [ | 41 deps = [ |
42 "//base:base_java", | 42 "//base:base_java", |
43 "//testing/android/appurify_support:appurify_support_java", | 43 "//testing/android/appurify_support:appurify_support_java", |
44 "//testing/android/reporter:reporter_java", | 44 "//testing/android/reporter:reporter_java", |
45 ] | 45 ] |
46 srcjar_deps = [ "//base:base_native_libraries_gen" ] | 46 srcjar_deps = [ "//base:base_native_libraries_gen" ] |
47 DEPRECATED_java_in_dir = "java/src" | 47 java_files = [ |
| 48 "java/src/org/chromium/native_test/NativeBrowserTestActivity.java", |
| 49 "java/src/org/chromium/native_test/NativeTestActivity.java", |
| 50 "java/src/org/chromium/native_test/NativeTestInstrumentationTestRunner.java"
, |
| 51 "java/src/org/chromium/native_test/NativeUnitTestActivity.java", |
| 52 ] |
48 jar_excluded_patterns = [ "*/NativeLibraries.class" ] | 53 jar_excluded_patterns = [ "*/NativeLibraries.class" ] |
49 } | 54 } |
50 | 55 |
51 # GYP: //testing/android/native_test.gyp:native_test_jni_headers | 56 # GYP: //testing/android/native_test.gyp:native_test_jni_headers |
52 generate_jni("native_test_jni_headers") { | 57 generate_jni("native_test_jni_headers") { |
53 sources = [ | 58 sources = [ |
54 "java/src/org/chromium/native_test/NativeTestActivity.java", | 59 "java/src/org/chromium/native_test/NativeTestActivity.java", |
55 ] | 60 ] |
56 jni_package = "testing" | 61 jni_package = "testing" |
57 } | 62 } |
OLD | NEW |