| 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 1846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1857 "task_runner_util_unittest.cc", | 1857 "task_runner_util_unittest.cc", |
| 1858 "task_scheduler/delayed_task_manager_unittest.cc", | 1858 "task_scheduler/delayed_task_manager_unittest.cc", |
| 1859 "task_scheduler/priority_queue_unittest.cc", | 1859 "task_scheduler/priority_queue_unittest.cc", |
| 1860 "task_scheduler/scheduler_lock_unittest.cc", | 1860 "task_scheduler/scheduler_lock_unittest.cc", |
| 1861 "task_scheduler/scheduler_thread_pool_unittest.cc", | 1861 "task_scheduler/scheduler_thread_pool_unittest.cc", |
| 1862 "task_scheduler/scheduler_worker_thread_stack_unittest.cc", | 1862 "task_scheduler/scheduler_worker_thread_stack_unittest.cc", |
| 1863 "task_scheduler/scheduler_worker_thread_unittest.cc", | 1863 "task_scheduler/scheduler_worker_thread_unittest.cc", |
| 1864 "task_scheduler/sequence_sort_key_unittest.cc", | 1864 "task_scheduler/sequence_sort_key_unittest.cc", |
| 1865 "task_scheduler/sequence_unittest.cc", | 1865 "task_scheduler/sequence_unittest.cc", |
| 1866 "task_scheduler/task_tracker_unittest.cc", | 1866 "task_scheduler/task_tracker_unittest.cc", |
| 1867 "task_scheduler/test_task_factory.cc", |
| 1868 "task_scheduler/test_task_factory.h", |
| 1867 "task_scheduler/test_utils.h", | 1869 "task_scheduler/test_utils.h", |
| 1868 "task_scheduler/utils_unittest.cc", | 1870 "task_scheduler/utils_unittest.cc", |
| 1869 "template_util_unittest.cc", | 1871 "template_util_unittest.cc", |
| 1870 "test/histogram_tester_unittest.cc", | 1872 "test/histogram_tester_unittest.cc", |
| 1871 "test/icu_test_util.cc", | 1873 "test/icu_test_util.cc", |
| 1872 "test/icu_test_util.h", | 1874 "test/icu_test_util.h", |
| 1873 "test/test_pending_task_unittest.cc", | 1875 "test/test_pending_task_unittest.cc", |
| 1874 "test/test_reg_util_win_unittest.cc", | 1876 "test/test_reg_util_win_unittest.cc", |
| 1875 "test/trace_event_analyzer_unittest.cc", | 1877 "test/trace_event_analyzer_unittest.cc", |
| 1876 "test/user_action_tester_unittest.cc", | 1878 "test/user_action_tester_unittest.cc", |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2364 | 2366 |
| 2365 # GYP: //base.gyp:base_java_unittest_support | 2367 # GYP: //base.gyp:base_java_unittest_support |
| 2366 android_library("base_java_unittest_support") { | 2368 android_library("base_java_unittest_support") { |
| 2367 deps = [ | 2369 deps = [ |
| 2368 ":base_java", | 2370 ":base_java", |
| 2369 ] | 2371 ] |
| 2370 java_files = | 2372 java_files = |
| 2371 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2373 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2372 } | 2374 } |
| 2373 } | 2375 } |
| OLD | NEW |