Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: base/BUILD.gn

Issue 1966733002: Move base/thread_task_runner_handle.h to base/threading/thread_task_runner_handle.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update include of .cc to be direct Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 "task_scheduler/task_traits.h", 788 "task_scheduler/task_traits.h",
789 "template_util.h", 789 "template_util.h",
790 "third_party/dmg_fp/dmg_fp.h", 790 "third_party/dmg_fp/dmg_fp.h",
791 "third_party/dmg_fp/dtoa_wrapper.cc", 791 "third_party/dmg_fp/dtoa_wrapper.cc",
792 "third_party/dmg_fp/g_fmt.cc", 792 "third_party/dmg_fp/g_fmt.cc",
793 "third_party/icu/icu_utf.cc", 793 "third_party/icu/icu_utf.cc",
794 "third_party/icu/icu_utf.h", 794 "third_party/icu/icu_utf.h",
795 "third_party/nspr/prtime.cc", 795 "third_party/nspr/prtime.cc",
796 "third_party/nspr/prtime.h", 796 "third_party/nspr/prtime.h",
797 "third_party/superfasthash/superfasthash.c", 797 "third_party/superfasthash/superfasthash.c",
798 "thread_task_runner_handle.cc",
799 "thread_task_runner_handle.h", 798 "thread_task_runner_handle.h",
800 "threading/non_thread_safe.h", 799 "threading/non_thread_safe.h",
801 "threading/non_thread_safe_impl.cc", 800 "threading/non_thread_safe_impl.cc",
802 "threading/non_thread_safe_impl.h", 801 "threading/non_thread_safe_impl.h",
803 "threading/platform_thread.h", 802 "threading/platform_thread.h",
804 "threading/platform_thread_android.cc", 803 "threading/platform_thread_android.cc",
805 "threading/platform_thread_internal_posix.cc", 804 "threading/platform_thread_internal_posix.cc",
806 "threading/platform_thread_internal_posix.h", 805 "threading/platform_thread_internal_posix.h",
807 "threading/platform_thread_linux.cc", 806 "threading/platform_thread_linux.cc",
808 "threading/platform_thread_mac.mm", 807 "threading/platform_thread_mac.mm",
(...skipping 19 matching lines...) Expand all
828 "threading/thread_local.h", 827 "threading/thread_local.h",
829 "threading/thread_local_android.cc", 828 "threading/thread_local_android.cc",
830 "threading/thread_local_posix.cc", 829 "threading/thread_local_posix.cc",
831 "threading/thread_local_storage.cc", 830 "threading/thread_local_storage.cc",
832 "threading/thread_local_storage.h", 831 "threading/thread_local_storage.h",
833 "threading/thread_local_storage_posix.cc", 832 "threading/thread_local_storage_posix.cc",
834 "threading/thread_local_storage_win.cc", 833 "threading/thread_local_storage_win.cc",
835 "threading/thread_local_win.cc", 834 "threading/thread_local_win.cc",
836 "threading/thread_restrictions.cc", 835 "threading/thread_restrictions.cc",
837 "threading/thread_restrictions.h", 836 "threading/thread_restrictions.h",
837 "threading/thread_task_runner_handle.cc",
838 "threading/thread_task_runner_handle.h",
838 "threading/watchdog.cc", 839 "threading/watchdog.cc",
839 "threading/watchdog.h", 840 "threading/watchdog.h",
840 "threading/worker_pool.cc", 841 "threading/worker_pool.cc",
841 "threading/worker_pool.h", 842 "threading/worker_pool.h",
842 "threading/worker_pool_posix.cc", 843 "threading/worker_pool_posix.cc",
843 "threading/worker_pool_posix.h", 844 "threading/worker_pool_posix.h",
844 "threading/worker_pool_win.cc", 845 "threading/worker_pool_win.cc",
845 "time/clock.cc", 846 "time/clock.cc",
846 "time/clock.h", 847 "time/clock.h",
847 "time/default_clock.cc", 848 "time/default_clock.cc",
(...skipping 1514 matching lines...) Expand 10 before | Expand all | Expand 10 after
2362 2363
2363 # GYP: //base.gyp:base_java_unittest_support 2364 # GYP: //base.gyp:base_java_unittest_support
2364 android_library("base_java_unittest_support") { 2365 android_library("base_java_unittest_support") {
2365 deps = [ 2366 deps = [
2366 ":base_java", 2367 ":base_java",
2367 ] 2368 ]
2368 java_files = 2369 java_files =
2369 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2370 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2370 } 2371 }
2371 } 2372 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698