Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: testing/android/BUILD.gn

Issue 557463002: Make base_unittests_apk actually work (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-group-datadeps
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698