Chromium Code Reviews| Index: testing/android/BUILD.gn |
| diff --git a/testing/android/BUILD.gn b/testing/android/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e07db8f591cbcc3d955d58b6ab624c63f966f572 |
| --- /dev/null |
| +++ b/testing/android/BUILD.gn |
| @@ -0,0 +1,39 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import("//build/config/android/rules.gni") |
| + |
| +# GYP: //testing/android/native_test.gyp:native_test_native_code |
| +source_set("native_test_native_code") { |
| + sources = [ |
| + "native_test_launcher.cc" |
| + ] |
| + deps = [ |
| + "//base", |
| + "//base/test:test_support", |
| + "//base/third_party/dynamic_annotations", |
| + "//testing/gtest", |
| + ":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.
|
| + ":native_test_util" |
| + ] |
| +} |
| + |
| +# GYP: //testing/android/native_test.gyp:native_test_jni_headers |
| +generate_jni("native_test_jni_headers") { |
| + sources = [ |
| + "java/src/org/chromium/native_test/ChromeNativeTestActivity.java", |
| + ] |
| + jni_package = "testing" |
| +} |
| + |
| +# GYP: //testing/android/native_test.gyp:native_test_util |
| +source_set("native_test_util") { |
| + sources = [ |
| + "native_test_util.cc", |
| + "native_test_util.h", |
| + ] |
| + deps = [ |
| + "//base" |
| + ] |
| +} |