| 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("//testing/test.gni") | 6 import("//testing/test.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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "android/jni_registrar.h", | 101 "android/jni_registrar.h", |
| 102 "android/jni_string.cc", | 102 "android/jni_string.cc", |
| 103 "android/jni_string.h", | 103 "android/jni_string.h", |
| 104 "android/jni_utils.cc", | 104 "android/jni_utils.cc", |
| 105 "android/jni_utils.h", | 105 "android/jni_utils.h", |
| 106 "android/jni_weak_ref.cc", | 106 "android/jni_weak_ref.cc", |
| 107 "android/jni_weak_ref.h", | 107 "android/jni_weak_ref.h", |
| 108 "android/library_loader/library_load_from_apk_status_codes.h", | 108 "android/library_loader/library_load_from_apk_status_codes.h", |
| 109 "android/library_loader/library_loader_hooks.cc", | 109 "android/library_loader/library_loader_hooks.cc", |
| 110 "android/library_loader/library_loader_hooks.h", | 110 "android/library_loader/library_loader_hooks.h", |
| 111 "android/library_loader/library_prefetcher.cc", |
| 112 "android/library_loader/library_prefetcher.h", |
| 111 "android/locale_utils.cc", | 113 "android/locale_utils.cc", |
| 112 "android/locale_utils.h", | 114 "android/locale_utils.h", |
| 113 "android/memory_pressure_listener_android.cc", | 115 "android/memory_pressure_listener_android.cc", |
| 114 "android/memory_pressure_listener_android.h", | 116 "android/memory_pressure_listener_android.h", |
| 115 "android/path_service_android.cc", | 117 "android/path_service_android.cc", |
| 116 "android/path_service_android.h", | 118 "android/path_service_android.h", |
| 117 "android/path_utils.cc", | 119 "android/path_utils.cc", |
| 118 "android/path_utils.h", | 120 "android/path_utils.h", |
| 119 "android/record_histogram.cc", | 121 "android/record_histogram.cc", |
| 120 "android/record_histogram.h", | 122 "android/record_histogram.h", |
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 } | 1062 } |
| 1061 } | 1063 } |
| 1062 | 1064 |
| 1063 test("base_unittests") { | 1065 test("base_unittests") { |
| 1064 sources = [ | 1066 sources = [ |
| 1065 "android/application_status_listener_unittest.cc", | 1067 "android/application_status_listener_unittest.cc", |
| 1066 "android/content_uri_utils_unittest.cc", | 1068 "android/content_uri_utils_unittest.cc", |
| 1067 "android/jni_android_unittest.cc", | 1069 "android/jni_android_unittest.cc", |
| 1068 "android/jni_array_unittest.cc", | 1070 "android/jni_array_unittest.cc", |
| 1069 "android/jni_string_unittest.cc", | 1071 "android/jni_string_unittest.cc", |
| 1072 "android/library_loader/library_prefetcher_unittest.cc", |
| 1070 "android/path_utils_unittest.cc", | 1073 "android/path_utils_unittest.cc", |
| 1071 "android/scoped_java_ref_unittest.cc", | 1074 "android/scoped_java_ref_unittest.cc", |
| 1072 "android/sys_utils_unittest.cc", | 1075 "android/sys_utils_unittest.cc", |
| 1073 "async_socket_io_handler_unittest.cc", | 1076 "async_socket_io_handler_unittest.cc", |
| 1074 "at_exit_unittest.cc", | 1077 "at_exit_unittest.cc", |
| 1075 "atomicops_unittest.cc", | 1078 "atomicops_unittest.cc", |
| 1076 "barrier_closure_unittest.cc", | 1079 "barrier_closure_unittest.cc", |
| 1077 "base64_unittest.cc", | 1080 "base64_unittest.cc", |
| 1078 "big_endian_unittest.cc", | 1081 "big_endian_unittest.cc", |
| 1079 "bind_unittest.cc", | 1082 "bind_unittest.cc", |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1491 | 1494 |
| 1492 # GYP: //base.gyp:base_java_unittest_support | 1495 # GYP: //base.gyp:base_java_unittest_support |
| 1493 android_library("base_java_unittest_support") { | 1496 android_library("base_java_unittest_support") { |
| 1494 deps = [ | 1497 deps = [ |
| 1495 ":base_java", | 1498 ":base_java", |
| 1496 ] | 1499 ] |
| 1497 java_files = | 1500 java_files = |
| 1498 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1501 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1499 } | 1502 } |
| 1500 } | 1503 } |
| OLD | NEW |