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 "threading/thread.cc", | 790 "threading/thread.cc", |
791 "threading/thread.h", | 791 "threading/thread.h", |
792 "threading/thread_checker.h", | 792 "threading/thread_checker.h", |
793 "threading/thread_checker_impl.cc", | 793 "threading/thread_checker_impl.cc", |
794 "threading/thread_checker_impl.h", | 794 "threading/thread_checker_impl.h", |
795 "threading/thread_collision_warner.cc", | 795 "threading/thread_collision_warner.cc", |
796 "threading/thread_collision_warner.h", | 796 "threading/thread_collision_warner.h", |
797 "threading/thread_id_name_manager.cc", | 797 "threading/thread_id_name_manager.cc", |
798 "threading/thread_id_name_manager.h", | 798 "threading/thread_id_name_manager.h", |
799 "threading/thread_local.h", | 799 "threading/thread_local.h", |
| 800 "threading/thread_local_android.cc", |
| 801 "threading/thread_local_posix.cc", |
800 "threading/thread_local_storage.cc", | 802 "threading/thread_local_storage.cc", |
801 "threading/thread_local_storage.h", | 803 "threading/thread_local_storage.h", |
802 "threading/thread_local_storage_posix.cc", | 804 "threading/thread_local_storage_posix.cc", |
803 "threading/thread_local_storage_win.cc", | 805 "threading/thread_local_storage_win.cc", |
| 806 "threading/thread_local_win.cc", |
804 "threading/thread_restrictions.cc", | 807 "threading/thread_restrictions.cc", |
805 "threading/thread_restrictions.h", | 808 "threading/thread_restrictions.h", |
806 "threading/watchdog.cc", | 809 "threading/watchdog.cc", |
807 "threading/watchdog.h", | 810 "threading/watchdog.h", |
808 "threading/worker_pool.cc", | 811 "threading/worker_pool.cc", |
809 "threading/worker_pool.h", | 812 "threading/worker_pool.h", |
810 "threading/worker_pool_posix.cc", | 813 "threading/worker_pool_posix.cc", |
811 "threading/worker_pool_posix.h", | 814 "threading/worker_pool_posix.h", |
812 "threading/worker_pool_win.cc", | 815 "threading/worker_pool_win.cc", |
813 "time/clock.cc", | 816 "time/clock.cc", |
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2087 | 2090 |
2088 # GYP: //base.gyp:base_java_unittest_support | 2091 # GYP: //base.gyp:base_java_unittest_support |
2089 android_library("base_java_unittest_support") { | 2092 android_library("base_java_unittest_support") { |
2090 deps = [ | 2093 deps = [ |
2091 ":base_java", | 2094 ":base_java", |
2092 ] | 2095 ] |
2093 java_files = | 2096 java_files = |
2094 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2097 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2095 } | 2098 } |
2096 } | 2099 } |
OLD | NEW |