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/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 } | 9 } |
10 | 10 |
| 11 # GYP: //base/base.gyp:test_support_base |
11 source_set("test_support") { | 12 source_set("test_support") { |
12 # TODO http://crbug.com/412064 enable this flag all the time. | 13 # TODO http://crbug.com/412064 enable this flag all the time. |
13 testonly = !is_component_build | 14 testonly = !is_component_build |
14 sources = [ | 15 sources = [ |
15 "expectations/expectation.cc", | 16 "expectations/expectation.cc", |
16 "expectations/expectation.h", | 17 "expectations/expectation.h", |
17 "expectations/parser.cc", | 18 "expectations/parser.cc", |
18 "expectations/parser.h", | 19 "expectations/parser.h", |
19 "gtest_xml_util.cc", | 20 "gtest_xml_util.cc", |
20 "gtest_xml_util.h", | 21 "gtest_xml_util.h", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 } | 161 } |
161 | 162 |
162 if (is_android) { | 163 if (is_android) { |
163 generate_jni("base_unittests_jni_headers") { | 164 generate_jni("base_unittests_jni_headers") { |
164 sources = [ | 165 sources = [ |
165 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 166 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
166 ] | 167 ] |
167 jni_package = "base" | 168 jni_package = "base" |
168 } | 169 } |
169 } | 170 } |
OLD | NEW |