| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "test_file_util.h", | 71 "test_file_util.h", |
| 72 "test_file_util_android.cc", | 72 "test_file_util_android.cc", |
| 73 "test_file_util_linux.cc", | 73 "test_file_util_linux.cc", |
| 74 "test_file_util_mac.cc", | 74 "test_file_util_mac.cc", |
| 75 "test_file_util_posix.cc", | 75 "test_file_util_posix.cc", |
| 76 "test_file_util_win.cc", | 76 "test_file_util_win.cc", |
| 77 "test_io_thread.cc", | 77 "test_io_thread.cc", |
| 78 "test_io_thread.h", | 78 "test_io_thread.h", |
| 79 "test_listener_ios.h", | 79 "test_listener_ios.h", |
| 80 "test_listener_ios.mm", | 80 "test_listener_ios.mm", |
| 81 "test_mock_time_task_runner.cc", | |
| 82 "test_mock_time_task_runner.h", | |
| 83 "test_pending_task.cc", | 81 "test_pending_task.cc", |
| 84 "test_pending_task.h", | 82 "test_pending_task.h", |
| 85 "test_reg_util_win.cc", | 83 "test_reg_util_win.cc", |
| 86 "test_reg_util_win.h", | 84 "test_reg_util_win.h", |
| 87 "test_shortcut_win.cc", | 85 "test_shortcut_win.cc", |
| 88 "test_shortcut_win.h", | 86 "test_shortcut_win.h", |
| 89 "test_simple_task_runner.cc", | 87 "test_simple_task_runner.cc", |
| 90 "test_simple_task_runner.h", | 88 "test_simple_task_runner.h", |
| 91 "test_suite.cc", | 89 "test_suite.cc", |
| 92 "test_suite.h", | 90 "test_suite.h", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 } | 168 } |
| 171 | 169 |
| 172 if (is_android) { | 170 if (is_android) { |
| 173 generate_jni("base_unittests_jni_headers") { | 171 generate_jni("base_unittests_jni_headers") { |
| 174 sources = [ | 172 sources = [ |
| 175 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 173 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 176 ] | 174 ] |
| 177 jni_package = "base" | 175 jni_package = "base" |
| 178 } | 176 } |
| 179 } | 177 } |
| OLD | NEW |