OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/config/android/rules.gni") | |
6 | |
7 # GYP: //testing/android/native_test.gyp:native_test_native_code | |
8 source_set("native_test_native_code") { | |
9 sources = [ | |
10 "native_test_launcher.cc" | |
11 ] | |
12 deps = [ | |
13 "//base", | |
14 "//base/test:test_support", | |
15 "//base/third_party/dynamic_annotations", | |
16 "//testing/gtest", | |
17 ":native_test_jni_headers", | |
brettw
2014/09/08 20:04:22
I put these ":" ones first rather than last.
cjhopman
2014/09/09 16:55:32
Done.
| |
18 ":native_test_util" | |
19 ] | |
20 } | |
21 | |
22 # GYP: //testing/android/native_test.gyp:native_test_jni_headers | |
23 generate_jni("native_test_jni_headers") { | |
24 sources = [ | |
25 "java/src/org/chromium/native_test/ChromeNativeTestActivity.java", | |
26 ] | |
27 jni_package = "testing" | |
28 } | |
29 | |
30 # GYP: //testing/android/native_test.gyp:native_test_util | |
31 source_set("native_test_util") { | |
32 sources = [ | |
33 "native_test_util.cc", | |
34 "native_test_util.h", | |
35 ] | |
36 deps = [ | |
37 "//base" | |
38 ] | |
39 } | |
OLD | NEW |