| 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
| 6 # ====================================== | 6 # ====================================== |
| 7 # | 7 # |
| 8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
| 9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
| 10 # it from the sources list in that case | 10 # it from the sources list in that case |
| (...skipping 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1858 "strings/utf_offset_string_conversions_unittest.cc", | 1858 "strings/utf_offset_string_conversions_unittest.cc", |
| 1859 "strings/utf_string_conversions_unittest.cc", | 1859 "strings/utf_string_conversions_unittest.cc", |
| 1860 "supports_user_data_unittest.cc", | 1860 "supports_user_data_unittest.cc", |
| 1861 "sync_socket_unittest.cc", | 1861 "sync_socket_unittest.cc", |
| 1862 "synchronization/cancellation_flag_unittest.cc", | 1862 "synchronization/cancellation_flag_unittest.cc", |
| 1863 "synchronization/condition_variable_unittest.cc", | 1863 "synchronization/condition_variable_unittest.cc", |
| 1864 "synchronization/lock_unittest.cc", | 1864 "synchronization/lock_unittest.cc", |
| 1865 "synchronization/read_write_lock_unittest.cc", | 1865 "synchronization/read_write_lock_unittest.cc", |
| 1866 "synchronization/waitable_event_unittest.cc", | 1866 "synchronization/waitable_event_unittest.cc", |
| 1867 "synchronization/waitable_event_watcher_unittest.cc", | 1867 "synchronization/waitable_event_watcher_unittest.cc", |
| 1868 "sys_byteorder_unittest.cc", |
| 1868 "sys_info_unittest.cc", | 1869 "sys_info_unittest.cc", |
| 1869 "system_monitor/system_monitor_unittest.cc", | 1870 "system_monitor/system_monitor_unittest.cc", |
| 1870 "task/cancelable_task_tracker_unittest.cc", | 1871 "task/cancelable_task_tracker_unittest.cc", |
| 1871 "task_runner_util_unittest.cc", | 1872 "task_runner_util_unittest.cc", |
| 1872 "task_scheduler/delayed_task_manager_unittest.cc", | 1873 "task_scheduler/delayed_task_manager_unittest.cc", |
| 1873 "task_scheduler/priority_queue_unittest.cc", | 1874 "task_scheduler/priority_queue_unittest.cc", |
| 1874 "task_scheduler/scheduler_lock_unittest.cc", | 1875 "task_scheduler/scheduler_lock_unittest.cc", |
| 1875 "task_scheduler/scheduler_service_thread_unittest.cc", | 1876 "task_scheduler/scheduler_service_thread_unittest.cc", |
| 1876 "task_scheduler/scheduler_thread_pool_impl_unittest.cc", | 1877 "task_scheduler/scheduler_thread_pool_impl_unittest.cc", |
| 1877 "task_scheduler/scheduler_worker_thread_stack_unittest.cc", | 1878 "task_scheduler/scheduler_worker_thread_stack_unittest.cc", |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2391 | 2392 |
| 2392 # GYP: //base.gyp:base_java_unittest_support | 2393 # GYP: //base.gyp:base_java_unittest_support |
| 2393 android_library("base_java_unittest_support") { | 2394 android_library("base_java_unittest_support") { |
| 2394 deps = [ | 2395 deps = [ |
| 2395 ":base_java", | 2396 ":base_java", |
| 2396 ] | 2397 ] |
| 2397 java_files = | 2398 java_files = |
| 2398 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2399 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2399 } | 2400 } |
| 2400 } | 2401 } |
| OLD | NEW |