| 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("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "test_file_util.h", | 81 "test_file_util.h", |
| 82 "test_file_util_android.cc", | 82 "test_file_util_android.cc", |
| 83 "test_file_util_linux.cc", | 83 "test_file_util_linux.cc", |
| 84 "test_file_util_mac.cc", | 84 "test_file_util_mac.cc", |
| 85 "test_file_util_posix.cc", | 85 "test_file_util_posix.cc", |
| 86 "test_file_util_win.cc", | 86 "test_file_util_win.cc", |
| 87 "test_io_thread.cc", | 87 "test_io_thread.cc", |
| 88 "test_io_thread.h", | 88 "test_io_thread.h", |
| 89 "test_listener_ios.h", | 89 "test_listener_ios.h", |
| 90 "test_listener_ios.mm", | 90 "test_listener_ios.mm", |
| 91 "test_message_loop.cc", |
| 92 "test_message_loop.h", |
| 91 "test_mock_time_task_runner.cc", | 93 "test_mock_time_task_runner.cc", |
| 92 "test_mock_time_task_runner.h", | 94 "test_mock_time_task_runner.h", |
| 93 "test_pending_task.cc", | 95 "test_pending_task.cc", |
| 94 "test_pending_task.h", | 96 "test_pending_task.h", |
| 95 "test_reg_util_win.cc", | 97 "test_reg_util_win.cc", |
| 96 "test_reg_util_win.h", | 98 "test_reg_util_win.h", |
| 97 "test_shortcut_win.cc", | 99 "test_shortcut_win.cc", |
| 98 "test_shortcut_win.h", | 100 "test_shortcut_win.h", |
| 99 "test_simple_task_runner.cc", | 101 "test_simple_task_runner.cc", |
| 100 "test_simple_task_runner.h", | 102 "test_simple_task_runner.h", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 258 |
| 257 if (is_android) { | 259 if (is_android) { |
| 258 generate_jni("base_unittests_jni_headers") { | 260 generate_jni("base_unittests_jni_headers") { |
| 259 sources = [ | 261 sources = [ |
| 260 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 262 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 261 "android/java/src/org/chromium/base/TestUiThread.java", | 263 "android/java/src/org/chromium/base/TestUiThread.java", |
| 262 ] | 264 ] |
| 263 jni_package = "base" | 265 jni_package = "base" |
| 264 } | 266 } |
| 265 } | 267 } |
| OLD | NEW |