| 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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 "task_runner.cc", | 760 "task_runner.cc", |
| 761 "task_runner.h", | 761 "task_runner.h", |
| 762 "task_runner_util.h", | 762 "task_runner_util.h", |
| 763 "task_scheduler/priority_queue.cc", | 763 "task_scheduler/priority_queue.cc", |
| 764 "task_scheduler/priority_queue.h", | 764 "task_scheduler/priority_queue.h", |
| 765 "task_scheduler/scheduler_lock.h", | 765 "task_scheduler/scheduler_lock.h", |
| 766 "task_scheduler/scheduler_lock_impl.cc", | 766 "task_scheduler/scheduler_lock_impl.cc", |
| 767 "task_scheduler/scheduler_lock_impl.h", | 767 "task_scheduler/scheduler_lock_impl.h", |
| 768 "task_scheduler/scheduler_worker_thread.cc", | 768 "task_scheduler/scheduler_worker_thread.cc", |
| 769 "task_scheduler/scheduler_worker_thread.h", | 769 "task_scheduler/scheduler_worker_thread.h", |
| 770 "task_scheduler/scheduler_worker_thread_delegate.h", |
| 770 "task_scheduler/sequence.cc", | 771 "task_scheduler/sequence.cc", |
| 771 "task_scheduler/sequence.h", | 772 "task_scheduler/sequence.h", |
| 772 "task_scheduler/sequence_sort_key.cc", | 773 "task_scheduler/sequence_sort_key.cc", |
| 773 "task_scheduler/sequence_sort_key.h", | 774 "task_scheduler/sequence_sort_key.h", |
| 774 "task_scheduler/task.cc", | 775 "task_scheduler/task.cc", |
| 775 "task_scheduler/task.h", | 776 "task_scheduler/task.h", |
| 776 "task_scheduler/task_tracker.cc", | 777 "task_scheduler/task_tracker.cc", |
| 777 "task_scheduler/task_tracker.h", | 778 "task_scheduler/task_tracker.h", |
| 778 "task_scheduler/task_traits.cc", | 779 "task_scheduler/task_traits.cc", |
| 779 "task_scheduler/task_traits.h", | 780 "task_scheduler/task_traits.h", |
| (...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2317 | 2318 |
| 2318 # GYP: //base.gyp:base_java_unittest_support | 2319 # GYP: //base.gyp:base_java_unittest_support |
| 2319 android_library("base_java_unittest_support") { | 2320 android_library("base_java_unittest_support") { |
| 2320 deps = [ | 2321 deps = [ |
| 2321 ":base_java", | 2322 ":base_java", |
| 2322 ] | 2323 ] |
| 2323 java_files = | 2324 java_files = |
| 2324 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2325 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2325 } | 2326 } |
| 2326 } | 2327 } |
| OLD | NEW |