ChromeVox should only intercept 'tab' key if nothing has focus.
[chromium-blink-merge.git] / testing / android / BUILD.gn
blob1cf250b6f23e3dcc62e36ea18a37b885f5724aef
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.
5 import("//build/config/android/rules.gni")
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_launcher.cc",
12   ]
13   libs = [ "log" ]
14   deps = [
15     ":native_test_jni_headers",
16     ":native_test_util",
17     "//base",
18     "//base/test:test_support",
19     "//base/third_party/dynamic_annotations",
20     "//testing/gtest",
21   ]
24 # GYP: //testing/android/native_test.gyp:native_test_jni_headers
25 generate_jni("native_test_jni_headers") {
26   sources = [
27     "java/src/org/chromium/native_test/ChromeNativeTestActivity.java",
28   ]
29   jni_package = "testing"
32 # GYP: //testing/android/native_test.gyp:native_test_util
33 source_set("native_test_util") {
34   sources = [
35     "native_test_util.cc",
36     "native_test_util.h",
37   ]
38   deps = [
39     "//base",
40   ]