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

Side by Side Diff: base/base.gypi

Issue 1015503002: Deduplicate PlatformThread's POSIX implementations of SetThreadPriority. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@background_threads
Patch Set: tweak comment Created 5 years, 9 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 | « base/BUILD.gn ('k') | base/threading/platform_thread_android.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 'base_i18n_target': 0, 9 'base_i18n_target': 0,
10 }, 10 },
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 'third_party/nspr/prtime.h', 595 'third_party/nspr/prtime.h',
596 'third_party/superfasthash/superfasthash.c', 596 'third_party/superfasthash/superfasthash.c',
597 'third_party/xdg_mime/xdgmime.h', 597 'third_party/xdg_mime/xdgmime.h',
598 'thread_task_runner_handle.cc', 598 'thread_task_runner_handle.cc',
599 'thread_task_runner_handle.h', 599 'thread_task_runner_handle.h',
600 'threading/non_thread_safe.h', 600 'threading/non_thread_safe.h',
601 'threading/non_thread_safe_impl.cc', 601 'threading/non_thread_safe_impl.cc',
602 'threading/non_thread_safe_impl.h', 602 'threading/non_thread_safe_impl.h',
603 'threading/platform_thread.h', 603 'threading/platform_thread.h',
604 'threading/platform_thread_android.cc', 604 'threading/platform_thread_android.cc',
605 'threading/platform_thread_internal_posix.cc',
606 'threading/platform_thread_internal_posix.h',
605 'threading/platform_thread_linux.cc', 607 'threading/platform_thread_linux.cc',
606 'threading/platform_thread_mac.mm', 608 'threading/platform_thread_mac.mm',
607 'threading/platform_thread_posix.cc', 609 'threading/platform_thread_posix.cc',
608 'threading/platform_thread_win.cc', 610 'threading/platform_thread_win.cc',
609 'threading/post_task_and_reply_impl.cc', 611 'threading/post_task_and_reply_impl.cc',
610 'threading/post_task_and_reply_impl.h', 612 'threading/post_task_and_reply_impl.h',
611 'threading/sequenced_worker_pool.cc', 613 'threading/sequenced_worker_pool.cc',
612 'threading/sequenced_worker_pool.h', 614 'threading/sequenced_worker_pool.h',
613 'threading/simple_thread.cc', 615 'threading/simple_thread.cc',
614 'threading/simple_thread.h', 616 'threading/simple_thread.h',
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 ['include', '^strings/sys_string_conversions_mac\\.'], 891 ['include', '^strings/sys_string_conversions_mac\\.'],
890 ['include', '^threading/platform_thread_mac\\.'], 892 ['include', '^threading/platform_thread_mac\\.'],
891 ['include', '^time/time_mac\\.'], 893 ['include', '^time/time_mac\\.'],
892 ['include', '^worker_pool_mac\\.'], 894 ['include', '^worker_pool_mac\\.'],
893 # Exclude all process/ except the minimal implementation 895 # Exclude all process/ except the minimal implementation
894 # needed on iOS (mostly for unit tests). 896 # needed on iOS (mostly for unit tests).
895 ['exclude', '^process/.*'], 897 ['exclude', '^process/.*'],
896 ['include', '^process/.*_ios\.(cc|mm)$'], 898 ['include', '^process/.*_ios\.(cc|mm)$'],
897 ['include', '^process/memory_stubs\.cc$'], 899 ['include', '^process/memory_stubs\.cc$'],
898 ['include', '^process/process_handle_posix\.cc$'], 900 ['include', '^process/process_handle_posix\.cc$'],
901 ['exclude', '^threading/platform_thread_internal_posix\\.(h|cc)'],
899 ['exclude', 'files/file_path_watcher_fsevents.cc'], 902 ['exclude', 'files/file_path_watcher_fsevents.cc'],
900 ['exclude', 'files/file_path_watcher_fsevents.h'], 903 ['exclude', 'files/file_path_watcher_fsevents.h'],
901 ['include', 'files/file_path_watcher_mac.cc'], 904 ['include', 'files/file_path_watcher_mac.cc'],
902 ], 905 ],
903 'sources': [ 906 'sources': [
904 'process/memory_stubs.cc', 907 'process/memory_stubs.cc',
905 ], 908 ],
906 'sources!': [ 909 'sources!': [
907 'message_loop/message_pump_libevent.cc' 910 'message_loop/message_pump_libevent.cc'
908 ], 911 ],
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 'sources!': [ 959 'sources!': [
957 'files/file_path_watcher_fsevents.cc', 960 'files/file_path_watcher_fsevents.cc',
958 'files/file_path_watcher_fsevents.h', 961 'files/file_path_watcher_fsevents.h',
959 'files/file_path_watcher_kqueue.cc', 962 'files/file_path_watcher_kqueue.cc',
960 'files/file_path_watcher_kqueue.h', 963 'files/file_path_watcher_kqueue.h',
961 'files/file_path_watcher_stub.cc', 964 'files/file_path_watcher_stub.cc',
962 ], 965 ],
963 }], 966 }],
964 ['(OS == "mac" or OS == "ios") and >(nacl_untrusted_build)==0', { 967 ['(OS == "mac" or OS == "ios") and >(nacl_untrusted_build)==0', {
965 'sources/': [ 968 'sources/': [
969 ['exclude', '^base_paths_posix\\.cc$'],
966 ['exclude', '^files/file_path_watcher_stub\\.cc$'], 970 ['exclude', '^files/file_path_watcher_stub\\.cc$'],
967 ['exclude', '^base_paths_posix\\.cc$'],
968 ['exclude', '^native_library_posix\\.cc$'], 971 ['exclude', '^native_library_posix\\.cc$'],
969 ['exclude', '^strings/sys_string_conversions_posix\\.cc$'], 972 ['exclude', '^strings/sys_string_conversions_posix\\.cc$'],
973 ['exclude', '^threading/platform_thread_internal_posix\\.cc$'],
970 ], 974 ],
971 }], 975 }],
972 ['<(os_bsd)==1 and >(nacl_untrusted_build)==0', { 976 ['<(os_bsd)==1 and >(nacl_untrusted_build)==0', {
973 'sources': [ 977 'sources': [
974 'process/memory_stubs.cc', 978 'process/memory_stubs.cc',
975 ], 979 ],
976 'sources/': [ 980 'sources/': [
977 ['exclude', '^files/file_path_watcher_linux\\.cc$'], 981 ['exclude', '^files/file_path_watcher_linux\\.cc$'],
978 ['exclude', '^files/file_path_watcher_stub\\.cc$'], 982 ['exclude', '^files/file_path_watcher_stub\\.cc$'],
979 ['exclude', '^files/file_util_linux\\.cc$'], 983 ['exclude', '^files/file_util_linux\\.cc$'],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 'i18n/time_formatting.h', 1035 'i18n/time_formatting.h',
1032 'i18n/timezone.cc', 1036 'i18n/timezone.cc',
1033 'i18n/timezone.h', 1037 'i18n/timezone.h',
1034 'i18n/utf8_validator_tables.cc', 1038 'i18n/utf8_validator_tables.cc',
1035 'i18n/utf8_validator_tables.h', 1039 'i18n/utf8_validator_tables.h',
1036 ], 1040 ],
1037 }] 1041 }]
1038 ], 1042 ],
1039 }, 1043 },
1040 } 1044 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/threading/platform_thread_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698