| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "simple_test_tick_clock.h", | 60 "simple_test_tick_clock.h", |
| 61 "task_runner_test_template.cc", | 61 "task_runner_test_template.cc", |
| 62 "task_runner_test_template.h", | 62 "task_runner_test_template.h", |
| 63 "test_file_util.cc", | 63 "test_file_util.cc", |
| 64 "test_file_util.h", | 64 "test_file_util.h", |
| 65 "test_file_util_android.cc", | 65 "test_file_util_android.cc", |
| 66 "test_file_util_linux.cc", | 66 "test_file_util_linux.cc", |
| 67 "test_file_util_mac.cc", | 67 "test_file_util_mac.cc", |
| 68 "test_file_util_posix.cc", | 68 "test_file_util_posix.cc", |
| 69 "test_file_util_win.cc", | 69 "test_file_util_win.cc", |
| 70 "test_io_thread.cc", |
| 71 "test_io_thread.h", |
| 70 "test_listener_ios.h", | 72 "test_listener_ios.h", |
| 71 "test_listener_ios.mm", | 73 "test_listener_ios.mm", |
| 72 "test_pending_task.cc", | 74 "test_pending_task.cc", |
| 73 "test_pending_task.h", | 75 "test_pending_task.h", |
| 74 "test_process_killer_win.cc", | 76 "test_process_killer_win.cc", |
| 75 "test_process_killer_win.h", | 77 "test_process_killer_win.h", |
| 76 "test_reg_util_win.cc", | 78 "test_reg_util_win.cc", |
| 77 "test_reg_util_win.h", | 79 "test_reg_util_win.h", |
| 78 "test_shortcut_win.cc", | 80 "test_shortcut_win.cc", |
| 79 "test_shortcut_win.h", | 81 "test_shortcut_win.h", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 } | 156 } |
| 155 | 157 |
| 156 if (is_android) { | 158 if (is_android) { |
| 157 generate_jni("base_unittests_jni_headers") { | 159 generate_jni("base_unittests_jni_headers") { |
| 158 sources = [ | 160 sources = [ |
| 159 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 161 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 160 ] | 162 ] |
| 161 jni_package = "base" | 163 jni_package = "base" |
| 162 } | 164 } |
| 163 } | 165 } |
| OLD | NEW |