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 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "sequenced_task_runner_test_template.cc", | 74 "sequenced_task_runner_test_template.cc", |
75 "sequenced_task_runner_test_template.h", | 75 "sequenced_task_runner_test_template.h", |
76 "sequenced_worker_pool_owner.cc", | 76 "sequenced_worker_pool_owner.cc", |
77 "sequenced_worker_pool_owner.h", | 77 "sequenced_worker_pool_owner.h", |
78 "simple_test_clock.cc", | 78 "simple_test_clock.cc", |
79 "simple_test_clock.h", | 79 "simple_test_clock.h", |
80 "simple_test_tick_clock.cc", | 80 "simple_test_tick_clock.cc", |
81 "simple_test_tick_clock.h", | 81 "simple_test_tick_clock.h", |
82 "task_runner_test_template.cc", | 82 "task_runner_test_template.cc", |
83 "task_runner_test_template.h", | 83 "task_runner_test_template.h", |
| 84 "test_discardable_memory_shmem_allocator.cc", |
| 85 "test_discardable_memory_shmem_allocator.h", |
84 "test_file_util.cc", | 86 "test_file_util.cc", |
85 "test_file_util.h", | 87 "test_file_util.h", |
86 "test_file_util_android.cc", | 88 "test_file_util_android.cc", |
87 "test_file_util_linux.cc", | 89 "test_file_util_linux.cc", |
88 "test_file_util_mac.cc", | 90 "test_file_util_mac.cc", |
89 "test_file_util_posix.cc", | 91 "test_file_util_posix.cc", |
90 "test_file_util_win.cc", | 92 "test_file_util_win.cc", |
91 "test_io_thread.cc", | 93 "test_io_thread.cc", |
92 "test_io_thread.h", | 94 "test_io_thread.h", |
93 "test_listener_ios.h", | 95 "test_listener_ios.h", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 } | 184 } |
183 | 185 |
184 if (is_android) { | 186 if (is_android) { |
185 generate_jni("base_unittests_jni_headers") { | 187 generate_jni("base_unittests_jni_headers") { |
186 sources = [ | 188 sources = [ |
187 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 189 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
188 ] | 190 ] |
189 jni_package = "base" | 191 jni_package = "base" |
190 } | 192 } |
191 } | 193 } |
OLD | NEW |