| 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", |
| 81 "test_pending_task.cc", | 83 "test_pending_task.cc", |
| 82 "test_pending_task.h", | 84 "test_pending_task.h", |
| 83 "test_reg_util_win.cc", | 85 "test_reg_util_win.cc", |
| 84 "test_reg_util_win.h", | 86 "test_reg_util_win.h", |
| 85 "test_shortcut_win.cc", | 87 "test_shortcut_win.cc", |
| 86 "test_shortcut_win.h", | 88 "test_shortcut_win.h", |
| 87 "test_simple_task_runner.cc", | 89 "test_simple_task_runner.cc", |
| 88 "test_simple_task_runner.h", | 90 "test_simple_task_runner.h", |
| 89 "test_suite.cc", | 91 "test_suite.cc", |
| 90 "test_suite.h", | 92 "test_suite.h", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 } | 170 } |
| 169 | 171 |
| 170 if (is_android) { | 172 if (is_android) { |
| 171 generate_jni("base_unittests_jni_headers") { | 173 generate_jni("base_unittests_jni_headers") { |
| 172 sources = [ | 174 sources = [ |
| 173 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 175 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 174 ] | 176 ] |
| 175 jni_package = "base" | 177 jni_package = "base" |
| 176 } | 178 } |
| 177 } | 179 } |
| OLD | NEW |