| 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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 "task_scheduler/task.cc", | 790 "task_scheduler/task.cc", |
| 791 "task_scheduler/task.h", | 791 "task_scheduler/task.h", |
| 792 "task_scheduler/task_scheduler.cc", | 792 "task_scheduler/task_scheduler.cc", |
| 793 "task_scheduler/task_scheduler.h", | 793 "task_scheduler/task_scheduler.h", |
| 794 "task_scheduler/task_scheduler_impl.cc", | 794 "task_scheduler/task_scheduler_impl.cc", |
| 795 "task_scheduler/task_scheduler_impl.h", | 795 "task_scheduler/task_scheduler_impl.h", |
| 796 "task_scheduler/task_tracker.cc", | 796 "task_scheduler/task_tracker.cc", |
| 797 "task_scheduler/task_tracker.h", | 797 "task_scheduler/task_tracker.h", |
| 798 "task_scheduler/task_traits.cc", | 798 "task_scheduler/task_traits.cc", |
| 799 "task_scheduler/task_traits.h", | 799 "task_scheduler/task_traits.h", |
| 800 "task_scheduler/worker_pool_params.cc", |
| 801 "task_scheduler/worker_pool_params.h", |
| 800 "template_util.h", | 802 "template_util.h", |
| 801 "third_party/dmg_fp/dmg_fp.h", | 803 "third_party/dmg_fp/dmg_fp.h", |
| 802 "third_party/dmg_fp/dtoa_wrapper.cc", | 804 "third_party/dmg_fp/dtoa_wrapper.cc", |
| 803 "third_party/dmg_fp/g_fmt.cc", | 805 "third_party/dmg_fp/g_fmt.cc", |
| 804 "third_party/icu/icu_utf.cc", | 806 "third_party/icu/icu_utf.cc", |
| 805 "third_party/icu/icu_utf.h", | 807 "third_party/icu/icu_utf.h", |
| 806 "third_party/nspr/prtime.cc", | 808 "third_party/nspr/prtime.cc", |
| 807 "third_party/nspr/prtime.h", | 809 "third_party/nspr/prtime.h", |
| 808 "third_party/superfasthash/superfasthash.c", | 810 "third_party/superfasthash/superfasthash.c", |
| 809 "threading/non_thread_safe.h", | 811 "threading/non_thread_safe.h", |
| (...skipping 1610 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 |