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

Side by Side Diff: base/base.gypi

Issue 1988563002: Create a reader-writer lock implementaiton in base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to base::subtle and add a warning Created 4 years, 6 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/base.gyp ('k') | base/synchronization/read_write_lock.h » ('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 'includes': [ 6 'includes': [
7 'trace_event/trace_event.gypi', 7 'trace_event/trace_event.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'variables': { 10 'variables': {
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 'synchronization/cancellation_flag.cc', 603 'synchronization/cancellation_flag.cc',
604 'synchronization/cancellation_flag.h', 604 'synchronization/cancellation_flag.h',
605 'synchronization/condition_variable.h', 605 'synchronization/condition_variable.h',
606 'synchronization/condition_variable_posix.cc', 606 'synchronization/condition_variable_posix.cc',
607 'synchronization/condition_variable_win.cc', 607 'synchronization/condition_variable_win.cc',
608 'synchronization/lock.cc', 608 'synchronization/lock.cc',
609 'synchronization/lock.h', 609 'synchronization/lock.h',
610 'synchronization/lock_impl.h', 610 'synchronization/lock_impl.h',
611 'synchronization/lock_impl_posix.cc', 611 'synchronization/lock_impl_posix.cc',
612 'synchronization/lock_impl_win.cc', 612 'synchronization/lock_impl_win.cc',
613 'synchronization/read_write_lock.h',
614 'synchronization/read_write_lock_nacl.cc',
615 'synchronization/read_write_lock_posix.cc',
616 'synchronization/read_write_lock_win.cc',
613 'synchronization/spin_wait.h', 617 'synchronization/spin_wait.h',
614 'synchronization/waitable_event.h', 618 'synchronization/waitable_event.h',
615 'synchronization/waitable_event_posix.cc', 619 'synchronization/waitable_event_posix.cc',
616 'synchronization/waitable_event_watcher.h', 620 'synchronization/waitable_event_watcher.h',
617 'synchronization/waitable_event_watcher_posix.cc', 621 'synchronization/waitable_event_watcher_posix.cc',
618 'synchronization/waitable_event_watcher_win.cc', 622 'synchronization/waitable_event_watcher_win.cc',
619 'synchronization/waitable_event_win.cc', 623 'synchronization/waitable_event_win.cc',
620 'sys_byteorder.h', 624 'sys_byteorder.h',
621 'sys_info.cc', 625 'sys_info.cc',
622 'sys_info.h', 626 'sys_info.h',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 'posix/unix_domain_socket_linux.cc', 874 'posix/unix_domain_socket_linux.cc',
871 'process/kill.cc', 875 'process/kill.cc',
872 'process/kill_posix.cc', 876 'process/kill_posix.cc',
873 'process/launch.cc', 877 'process/launch.cc',
874 'process/launch_posix.cc', 878 'process/launch_posix.cc',
875 'process/process_metrics.cc', 879 'process/process_metrics.cc',
876 'process/process_metrics_posix.cc', 880 'process/process_metrics_posix.cc',
877 'process/process_posix.cc', 881 'process/process_posix.cc',
878 'rand_util_posix.cc', 882 'rand_util_posix.cc',
879 'scoped_native_library.cc', 883 'scoped_native_library.cc',
884 'synchronization/read_write_lock_posix.cc',
880 'sys_info.cc', 885 'sys_info.cc',
881 'sys_info_posix.cc', 886 'sys_info_posix.cc',
882 'third_party/dynamic_annotations/dynamic_annotations.c', 887 'third_party/dynamic_annotations/dynamic_annotations.c',
883 ], 888 ],
884 'sources/': [ 889 'sources/': [
885 ['include', '^threading/platform_thread_linux\\.cc$'], 890 ['include', '^threading/platform_thread_linux\\.cc$'],
886 ], 891 ],
887 }], 892 }],
888 ['OS == "android" and >(nacl_untrusted_build)==0', { 893 ['OS == "android" and >(nacl_untrusted_build)==0', {
889 'sources!': [ 894 'sources!': [
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 'i18n/time_formatting.h', 1102 'i18n/time_formatting.h',
1098 'i18n/timezone.cc', 1103 'i18n/timezone.cc',
1099 'i18n/timezone.h', 1104 'i18n/timezone.h',
1100 'i18n/utf8_validator_tables.cc', 1105 'i18n/utf8_validator_tables.cc',
1101 'i18n/utf8_validator_tables.h', 1106 'i18n/utf8_validator_tables.h',
1102 ], 1107 ],
1103 }] 1108 }]
1104 ], 1109 ],
1105 }, 1110 },
1106 } 1111 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/synchronization/read_write_lock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698