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

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: more fixes 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
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 'i18n/time_formatting.h', 1034 'i18n/time_formatting.h',
1032 'i18n/timezone.cc', 1035 'i18n/timezone.cc',
1033 'i18n/timezone.h', 1036 'i18n/timezone.h',
1034 'i18n/utf8_validator_tables.cc', 1037 'i18n/utf8_validator_tables.cc',
1035 'i18n/utf8_validator_tables.h', 1038 'i18n/utf8_validator_tables.h',
1036 ], 1039 ],
1037 }] 1040 }]
1038 ], 1041 ],
1039 }, 1042 },
1040 } 1043 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698