| 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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 "task_scheduler/scheduler_lock.h", | 774 "task_scheduler/scheduler_lock.h", |
| 775 "task_scheduler/scheduler_lock_impl.cc", | 775 "task_scheduler/scheduler_lock_impl.cc", |
| 776 "task_scheduler/scheduler_lock_impl.h", | 776 "task_scheduler/scheduler_lock_impl.h", |
| 777 "task_scheduler/scheduler_service_thread.cc", | 777 "task_scheduler/scheduler_service_thread.cc", |
| 778 "task_scheduler/scheduler_service_thread.h", | 778 "task_scheduler/scheduler_service_thread.h", |
| 779 "task_scheduler/scheduler_worker.cc", | 779 "task_scheduler/scheduler_worker.cc", |
| 780 "task_scheduler/scheduler_worker.h", | 780 "task_scheduler/scheduler_worker.h", |
| 781 "task_scheduler/scheduler_worker_pool.h", | 781 "task_scheduler/scheduler_worker_pool.h", |
| 782 "task_scheduler/scheduler_worker_pool_impl.cc", | 782 "task_scheduler/scheduler_worker_pool_impl.cc", |
| 783 "task_scheduler/scheduler_worker_pool_impl.h", | 783 "task_scheduler/scheduler_worker_pool_impl.h", |
| 784 "task_scheduler/scheduler_worker_pool_params.cc", |
| 785 "task_scheduler/scheduler_worker_pool_params.h", |
| 784 "task_scheduler/scheduler_worker_stack.cc", | 786 "task_scheduler/scheduler_worker_stack.cc", |
| 785 "task_scheduler/scheduler_worker_stack.h", | 787 "task_scheduler/scheduler_worker_stack.h", |
| 786 "task_scheduler/sequence.cc", | 788 "task_scheduler/sequence.cc", |
| 787 "task_scheduler/sequence.h", | 789 "task_scheduler/sequence.h", |
| 788 "task_scheduler/sequence_sort_key.cc", | 790 "task_scheduler/sequence_sort_key.cc", |
| 789 "task_scheduler/sequence_sort_key.h", | 791 "task_scheduler/sequence_sort_key.h", |
| 790 "task_scheduler/task.cc", | 792 "task_scheduler/task.cc", |
| 791 "task_scheduler/task.h", | 793 "task_scheduler/task.h", |
| 792 "task_scheduler/task_scheduler.cc", | 794 "task_scheduler/task_scheduler.cc", |
| 793 "task_scheduler/task_scheduler.h", | 795 "task_scheduler/task_scheduler.h", |
| (...skipping 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2420 | 2422 |
| 2421 # GYP: //base.gyp:base_java_unittest_support | 2423 # GYP: //base.gyp:base_java_unittest_support |
| 2422 android_library("base_java_unittest_support") { | 2424 android_library("base_java_unittest_support") { |
| 2423 deps = [ | 2425 deps = [ |
| 2424 ":base_java", | 2426 ":base_java", |
| 2425 ] | 2427 ] |
| 2426 java_files = | 2428 java_files = |
| 2427 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2429 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2428 } | 2430 } |
| 2429 } | 2431 } |
| OLD | NEW |