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

Side by Side Diff: base/BUILD.gn

Issue 2358123005: Move OneWriterSeqLock and SharedMemorySeqLockBuffer from content/ to device/base/synchronization (Closed)
Patch Set: Created 4 years, 2 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) 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 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 "synchronization/atomic_flag.h", 746 "synchronization/atomic_flag.h",
747 "synchronization/cancellation_flag.h", 747 "synchronization/cancellation_flag.h",
748 "synchronization/condition_variable.h", 748 "synchronization/condition_variable.h",
749 "synchronization/condition_variable_posix.cc", 749 "synchronization/condition_variable_posix.cc",
750 "synchronization/condition_variable_win.cc", 750 "synchronization/condition_variable_win.cc",
751 "synchronization/lock.cc", 751 "synchronization/lock.cc",
752 "synchronization/lock.h", 752 "synchronization/lock.h",
753 "synchronization/lock_impl.h", 753 "synchronization/lock_impl.h",
754 "synchronization/lock_impl_posix.cc", 754 "synchronization/lock_impl_posix.cc",
755 "synchronization/lock_impl_win.cc", 755 "synchronization/lock_impl_win.cc",
756 "synchronization/one_writer_seqlock.cc",
757 "synchronization/one_writer_seqlock.h",
756 "synchronization/read_write_lock.h", 758 "synchronization/read_write_lock.h",
757 "synchronization/read_write_lock_nacl.cc", 759 "synchronization/read_write_lock_nacl.cc",
758 "synchronization/read_write_lock_posix.cc", 760 "synchronization/read_write_lock_posix.cc",
759 "synchronization/read_write_lock_win.cc", 761 "synchronization/read_write_lock_win.cc",
762 "synchronization/shared_memory_seqlock_buffer.h",
760 "synchronization/spin_wait.h", 763 "synchronization/spin_wait.h",
761 "synchronization/waitable_event.h", 764 "synchronization/waitable_event.h",
762 "synchronization/waitable_event_posix.cc", 765 "synchronization/waitable_event_posix.cc",
763 "synchronization/waitable_event_watcher.h", 766 "synchronization/waitable_event_watcher.h",
764 "synchronization/waitable_event_watcher_posix.cc", 767 "synchronization/waitable_event_watcher_posix.cc",
765 "synchronization/waitable_event_watcher_win.cc", 768 "synchronization/waitable_event_watcher_win.cc",
766 "synchronization/waitable_event_win.cc", 769 "synchronization/waitable_event_win.cc",
767 "sys_byteorder.h", 770 "sys_byteorder.h",
768 "sys_info.cc", 771 "sys_info.cc",
769 "sys_info.h", 772 "sys_info.h",
(...skipping 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 "strings/stringprintf_unittest.cc", 1920 "strings/stringprintf_unittest.cc",
1918 "strings/sys_string_conversions_mac_unittest.mm", 1921 "strings/sys_string_conversions_mac_unittest.mm",
1919 "strings/sys_string_conversions_unittest.cc", 1922 "strings/sys_string_conversions_unittest.cc",
1920 "strings/utf_offset_string_conversions_unittest.cc", 1923 "strings/utf_offset_string_conversions_unittest.cc",
1921 "strings/utf_string_conversions_unittest.cc", 1924 "strings/utf_string_conversions_unittest.cc",
1922 "supports_user_data_unittest.cc", 1925 "supports_user_data_unittest.cc",
1923 "sync_socket_unittest.cc", 1926 "sync_socket_unittest.cc",
1924 "synchronization/atomic_flag_unittest.cc", 1927 "synchronization/atomic_flag_unittest.cc",
1925 "synchronization/condition_variable_unittest.cc", 1928 "synchronization/condition_variable_unittest.cc",
1926 "synchronization/lock_unittest.cc", 1929 "synchronization/lock_unittest.cc",
1930 "synchronization/one_writer_seqlock_unittest.cc",
1927 "synchronization/read_write_lock_unittest.cc", 1931 "synchronization/read_write_lock_unittest.cc",
1928 "synchronization/waitable_event_unittest.cc", 1932 "synchronization/waitable_event_unittest.cc",
1929 "synchronization/waitable_event_watcher_unittest.cc", 1933 "synchronization/waitable_event_watcher_unittest.cc",
1930 "sys_byteorder_unittest.cc", 1934 "sys_byteorder_unittest.cc",
1931 "sys_info_unittest.cc", 1935 "sys_info_unittest.cc",
1932 "system_monitor/system_monitor_unittest.cc", 1936 "system_monitor/system_monitor_unittest.cc",
1933 "task/cancelable_task_tracker_unittest.cc", 1937 "task/cancelable_task_tracker_unittest.cc",
1934 "task_runner_util_unittest.cc", 1938 "task_runner_util_unittest.cc",
1935 "task_scheduler/delayed_task_manager_unittest.cc", 1939 "task_scheduler/delayed_task_manager_unittest.cc",
1936 "task_scheduler/priority_queue_unittest.cc", 1940 "task_scheduler/priority_queue_unittest.cc",
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
2459 testonly = true 2463 testonly = true
2460 deps = [ 2464 deps = [
2461 ":base_java", 2465 ":base_java",
2462 ] 2466 ]
2463 java_files = [ 2467 java_files = [
2464 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2468 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2465 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2469 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2466 ] 2470 ]
2467 } 2471 }
2468 } 2472 }
OLDNEW
« no previous file with comments | « no previous file | base/synchronization/one_writer_seqlock.h » ('j') | base/synchronization/one_writer_seqlock.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698