OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/android/rules.gni") | |
6 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
7 | 6 |
| 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") |
| 9 } |
| 10 |
8 source_set("test_support") { | 11 source_set("test_support") { |
9 sources = [ | 12 sources = [ |
10 "expectations/expectation.cc", | 13 "expectations/expectation.cc", |
11 "expectations/expectation.h", | 14 "expectations/expectation.h", |
12 "expectations/parser.cc", | 15 "expectations/parser.cc", |
13 "expectations/parser.h", | 16 "expectations/parser.h", |
14 "gtest_xml_util.cc", | 17 "gtest_xml_util.cc", |
15 "gtest_xml_util.h", | 18 "gtest_xml_util.h", |
16 "launcher/test_launcher.cc", | 19 "launcher/test_launcher.cc", |
17 "launcher/test_launcher.h", | 20 "launcher/test_launcher.h", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 } | 154 } |
152 | 155 |
153 if (is_android) { | 156 if (is_android) { |
154 generate_jni("base_unittests_jni_headers") { | 157 generate_jni("base_unittests_jni_headers") { |
155 sources = [ | 158 sources = [ |
156 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 159 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
157 ] | 160 ] |
158 jni_package = "base" | 161 jni_package = "base" |
159 } | 162 } |
160 } | 163 } |
OLD | NEW |