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

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: Simple-stupid implementaiton for NaCl 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
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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 'synchronization/cancellation_flag.cc', 601 'synchronization/cancellation_flag.cc',
602 'synchronization/cancellation_flag.h', 602 'synchronization/cancellation_flag.h',
603 'synchronization/condition_variable.h', 603 'synchronization/condition_variable.h',
604 'synchronization/condition_variable_posix.cc', 604 'synchronization/condition_variable_posix.cc',
605 'synchronization/condition_variable_win.cc', 605 'synchronization/condition_variable_win.cc',
606 'synchronization/lock.cc', 606 'synchronization/lock.cc',
607 'synchronization/lock.h', 607 'synchronization/lock.h',
608 'synchronization/lock_impl.h', 608 'synchronization/lock_impl.h',
609 'synchronization/lock_impl_posix.cc', 609 'synchronization/lock_impl_posix.cc',
610 'synchronization/lock_impl_win.cc', 610 'synchronization/lock_impl_win.cc',
611 'synchronization/rw_lock.h',
612 'synchronization/rw_lock_nacl.cc',
613 'synchronization/rw_lock_posix.cc',
614 'synchronization/rw_lock_win.cc',
611 'synchronization/spin_wait.h', 615 'synchronization/spin_wait.h',
612 'synchronization/waitable_event.h', 616 'synchronization/waitable_event.h',
613 'synchronization/waitable_event_posix.cc', 617 'synchronization/waitable_event_posix.cc',
614 'synchronization/waitable_event_watcher.h', 618 'synchronization/waitable_event_watcher.h',
615 'synchronization/waitable_event_watcher_posix.cc', 619 'synchronization/waitable_event_watcher_posix.cc',
616 'synchronization/waitable_event_watcher_win.cc', 620 'synchronization/waitable_event_watcher_win.cc',
617 'synchronization/waitable_event_win.cc', 621 'synchronization/waitable_event_win.cc',
618 'sys_byteorder.h', 622 'sys_byteorder.h',
619 'sys_info.cc', 623 'sys_info.cc',
620 'sys_info.h', 624 'sys_info.h',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 'posix/unix_domain_socket_linux.cc', 872 'posix/unix_domain_socket_linux.cc',
869 'process/kill.cc', 873 'process/kill.cc',
870 'process/kill_posix.cc', 874 'process/kill_posix.cc',
871 'process/launch.cc', 875 'process/launch.cc',
872 'process/launch_posix.cc', 876 'process/launch_posix.cc',
873 'process/process_metrics.cc', 877 'process/process_metrics.cc',
874 'process/process_metrics_posix.cc', 878 'process/process_metrics_posix.cc',
875 'process/process_posix.cc', 879 'process/process_posix.cc',
876 'rand_util_posix.cc', 880 'rand_util_posix.cc',
877 'scoped_native_library.cc', 881 'scoped_native_library.cc',
882 'synchronization/rw_lock_posix.cc',
878 'sys_info.cc', 883 'sys_info.cc',
879 'sys_info_posix.cc', 884 'sys_info_posix.cc',
880 'third_party/dynamic_annotations/dynamic_annotations.c', 885 'third_party/dynamic_annotations/dynamic_annotations.c',
881 ], 886 ],
882 'sources/': [ 887 'sources/': [
883 ['include', '^threading/platform_thread_linux\\.cc$'], 888 ['include', '^threading/platform_thread_linux\\.cc$'],
884 ], 889 ],
885 }], 890 }],
886 ['OS == "android" and >(nacl_untrusted_build)==0', { 891 ['OS == "android" and >(nacl_untrusted_build)==0', {
887 'sources!': [ 892 'sources!': [
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1095 'i18n/time_formatting.h', 1100 'i18n/time_formatting.h',
1096 'i18n/timezone.cc', 1101 'i18n/timezone.cc',
1097 'i18n/timezone.h', 1102 'i18n/timezone.h',
1098 'i18n/utf8_validator_tables.cc', 1103 'i18n/utf8_validator_tables.cc',
1099 'i18n/utf8_validator_tables.h', 1104 'i18n/utf8_validator_tables.h',
1100 ], 1105 ],
1101 }] 1106 }]
1102 ], 1107 ],
1103 }, 1108 },
1104 } 1109 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/synchronization/rw_lock.h » ('j') | base/synchronization/rw_lock.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698