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_native_code | 7 # GYP: //testing/android/native_test.gyp:native_test_native_code |
8 source_set("native_test_native_code") { | 8 source_set("native_test_native_code") { |
9 testonly = true | 9 testonly = true |
10 sources = [ | 10 sources = [ |
| 11 "native_test_jni_onload_delegate.cc", |
| 12 "native_test_jni_onload_delegate.h", |
| 13 "native_test_jni_onload.cc", |
11 "native_test_launcher.cc", | 14 "native_test_launcher.cc", |
| 15 "native_test_launcher.h", |
12 ] | 16 ] |
13 libs = [ "log" ] | 17 libs = [ "log" ] |
14 deps = [ | 18 deps = [ |
15 ":native_test_jni_headers", | 19 ":native_test_jni_headers", |
16 ":native_test_util", | 20 ":native_test_util", |
17 "//base", | 21 "//base", |
18 "//base/test:test_support", | 22 "//base/test:test_support", |
19 "//base/third_party/dynamic_annotations", | 23 "//base/third_party/dynamic_annotations", |
20 "//testing/gtest", | 24 "//testing/gtest", |
21 ] | 25 ] |
(...skipping 10 matching lines...) Expand all Loading... |
32 # GYP: //testing/android/native_test.gyp:native_test_util | 36 # GYP: //testing/android/native_test.gyp:native_test_util |
33 source_set("native_test_util") { | 37 source_set("native_test_util") { |
34 sources = [ | 38 sources = [ |
35 "native_test_util.cc", | 39 "native_test_util.cc", |
36 "native_test_util.h", | 40 "native_test_util.h", |
37 ] | 41 ] |
38 deps = [ | 42 deps = [ |
39 "//base", | 43 "//base", |
40 ] | 44 ] |
41 } | 45 } |
OLD | NEW |