| 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_native_code |
| 8 source_set("native_test_support") { | 8 source_set("native_test_native_code") { |
| 9 testonly = true | 9 testonly = true |
| 10 sources = [ | 10 sources = [ |
| 11 "native_test_jni_onload.cc", |
| 11 "native_test_launcher.cc", | 12 "native_test_launcher.cc", |
| 12 "native_test_launcher.h", | 13 "native_test_launcher.h", |
| 13 "native_test_util.cc", | |
| 14 "native_test_util.h", | |
| 15 ] | 14 ] |
| 15 libs = [ "log" ] |
| 16 deps = [ | 16 deps = [ |
| 17 ":native_test_jni_headers", | 17 ":native_test_jni_headers", |
| 18 ":native_test_util", |
| 18 "//base", | 19 "//base", |
| 19 "//base/test:test_support", | 20 "//base/test:test_support", |
| 20 "//base/third_party/dynamic_annotations", | 21 "//base/third_party/dynamic_annotations", |
| 21 "//testing/gtest", | 22 "//testing/gtest", |
| 22 ] | 23 ] |
| 23 } | 24 } |
| 24 | 25 |
| 25 # GYP: //testing/android/native_test.gyp:native_test_native_code | |
| 26 source_set("native_test_native_code") { | |
| 27 testonly = true | |
| 28 sources = [ | |
| 29 "native_test_jni_onload.cc", | |
| 30 ] | |
| 31 libs = [ "log" ] | |
| 32 deps = [ | |
| 33 ":native_test_support", | |
| 34 "//base", | |
| 35 ] | |
| 36 } | |
| 37 | |
| 38 # GYP: //testing/android/native_test.gyp:native_test_jni_headers | 26 # GYP: //testing/android/native_test.gyp:native_test_jni_headers |
| 39 generate_jni("native_test_jni_headers") { | 27 generate_jni("native_test_jni_headers") { |
| 40 sources = [ | 28 sources = [ |
| 41 "java/src/org/chromium/native_test/NativeTestActivity.java", | 29 "java/src/org/chromium/native_test/NativeTestActivity.java", |
| 42 ] | 30 ] |
| 43 jni_package = "testing" | 31 jni_package = "testing" |
| 44 } | 32 } |
| 33 |
| 34 # GYP: //testing/android/native_test.gyp:native_test_util |
| 35 source_set("native_test_util") { |
| 36 sources = [ |
| 37 "native_test_util.cc", |
| 38 "native_test_util.h", |
| 39 ] |
| 40 deps = [ |
| 41 "//base", |
| 42 ] |
| 43 } |
| OLD | NEW |