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

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

Issue 1071573003: [Android] Move testing/android/ to testing/android/native_test/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removing errant commit Created 5 years, 8 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
« no previous file with comments | « sandbox/linux/BUILD.gn ('k') | testing/android/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 testonly = true
10 sources = [
11 "native_test_jni_onload.cc",
12 "native_test_launcher.cc",
13 "native_test_launcher.h",
14 ]
15 libs = [ "log" ]
16 deps = [
17 ":native_test_jni_headers",
18 ":native_test_util",
19 "//base",
20 "//base/test:test_support",
21 "//base/third_party/dynamic_annotations",
22 "//testing/gtest",
23 ]
24 }
25
26 # GYP: //testing/android/native_test.gyp:native_test_jni_headers
27 generate_jni("native_test_jni_headers") {
28 sources = [
29 "java/src/org/chromium/native_test/ChromeNativeTestActivity.java",
30 ]
31 jni_package = "testing"
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 }
OLDNEW
« no previous file with comments | « sandbox/linux/BUILD.gn ('k') | testing/android/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698