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 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 # GYP: //base/base.gyp:test_support_base | 25 # GYP: //base/base.gyp:test_support_base |
26 static_library("test_support") { | 26 static_library("test_support") { |
27 testonly = true | 27 testonly = true |
28 sources = [ | 28 sources = [ |
29 "../trace_event/trace_config_memory_test_util.h", | 29 "../trace_event/trace_config_memory_test_util.h", |
30 "android/java_handler_thread_for_testing.cc", | 30 "android/java_handler_thread_for_testing.cc", |
31 "android/java_handler_thread_for_testing.h", | 31 "android/java_handler_thread_for_testing.h", |
32 "android/test_system_message_handler_link_android.cc", | 32 "android/test_system_message_handler_link_android.cc", |
33 "android/test_system_message_handler_link_android.h", | 33 "android/test_system_message_handler_link_android.h", |
| 34 "fuzzed_data_provider.cc", |
| 35 "fuzzed_data_provider.h", |
34 "gtest_util.cc", | 36 "gtest_util.cc", |
35 "gtest_util.h", | 37 "gtest_util.h", |
36 "gtest_xml_unittest_result_printer.cc", | 38 "gtest_xml_unittest_result_printer.cc", |
37 "gtest_xml_unittest_result_printer.h", | 39 "gtest_xml_unittest_result_printer.h", |
38 "gtest_xml_util.cc", | 40 "gtest_xml_util.cc", |
39 "gtest_xml_util.h", | 41 "gtest_xml_util.h", |
40 "histogram_tester.cc", | 42 "histogram_tester.cc", |
41 "histogram_tester.h", | 43 "histogram_tester.h", |
42 "icu_test_util.cc", | 44 "icu_test_util.cc", |
43 "icu_test_util.h", | 45 "icu_test_util.h", |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 if (is_android) { | 296 if (is_android) { |
295 generate_jni("base_unittests_jni_headers") { | 297 generate_jni("base_unittests_jni_headers") { |
296 sources = [ | 298 sources = [ |
297 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 299 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
298 "android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 300 "android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
299 "android/java/src/org/chromium/base/TestUiThread.java", | 301 "android/java/src/org/chromium/base/TestUiThread.java", |
300 ] | 302 ] |
301 jni_package = "base" | 303 jni_package = "base" |
302 } | 304 } |
303 } | 305 } |
OLD | NEW |