| 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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 "threading/thread.cc", | 846 "threading/thread.cc", |
| 847 "threading/thread.h", | 847 "threading/thread.h", |
| 848 "threading/thread_checker.h", | 848 "threading/thread_checker.h", |
| 849 "threading/thread_checker_impl.cc", | 849 "threading/thread_checker_impl.cc", |
| 850 "threading/thread_checker_impl.h", | 850 "threading/thread_checker_impl.h", |
| 851 "threading/thread_collision_warner.cc", | 851 "threading/thread_collision_warner.cc", |
| 852 "threading/thread_collision_warner.h", | 852 "threading/thread_collision_warner.h", |
| 853 "threading/thread_id_name_manager.cc", | 853 "threading/thread_id_name_manager.cc", |
| 854 "threading/thread_id_name_manager.h", | 854 "threading/thread_id_name_manager.h", |
| 855 "threading/thread_local.h", | 855 "threading/thread_local.h", |
| 856 "threading/thread_local_android.cc", | |
| 857 "threading/thread_local_posix.cc", | |
| 858 "threading/thread_local_storage.cc", | 856 "threading/thread_local_storage.cc", |
| 859 "threading/thread_local_storage.h", | 857 "threading/thread_local_storage.h", |
| 860 "threading/thread_local_storage_posix.cc", | 858 "threading/thread_local_storage_posix.cc", |
| 861 "threading/thread_local_storage_win.cc", | 859 "threading/thread_local_storage_win.cc", |
| 862 "threading/thread_local_win.cc", | |
| 863 "threading/thread_restrictions.cc", | 860 "threading/thread_restrictions.cc", |
| 864 "threading/thread_restrictions.h", | 861 "threading/thread_restrictions.h", |
| 865 "threading/thread_task_runner_handle.cc", | 862 "threading/thread_task_runner_handle.cc", |
| 866 "threading/thread_task_runner_handle.h", | 863 "threading/thread_task_runner_handle.h", |
| 867 "threading/watchdog.cc", | 864 "threading/watchdog.cc", |
| 868 "threading/watchdog.h", | 865 "threading/watchdog.h", |
| 869 "threading/worker_pool.cc", | 866 "threading/worker_pool.cc", |
| 870 "threading/worker_pool.h", | 867 "threading/worker_pool.h", |
| 871 "threading/worker_pool_posix.cc", | 868 "threading/worker_pool_posix.cc", |
| 872 "threading/worker_pool_posix.h", | 869 "threading/worker_pool_posix.h", |
| (...skipping 1576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2449 testonly = true | 2446 testonly = true |
| 2450 deps = [ | 2447 deps = [ |
| 2451 ":base_java", | 2448 ":base_java", |
| 2452 ] | 2449 ] |
| 2453 java_files = [ | 2450 java_files = [ |
| 2454 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2451 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2455 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2452 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2456 ] | 2453 ] |
| 2457 } | 2454 } |
| 2458 } | 2455 } |
| OLD | NEW |