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

Side by Side Diff: base/BUILD.gn

Issue 2332923004: Add a new file descriptor watch API. (Closed)
Patch Set: self-review Created 4 years, 3 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 | « no previous file | base/files/file_descriptor_watcher_posix.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) 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 "file_descriptor_posix.h", 309 "file_descriptor_posix.h",
310 "file_version_info.h", 310 "file_version_info.h",
311 "file_version_info_mac.h", 311 "file_version_info_mac.h",
312 "file_version_info_mac.mm", 312 "file_version_info_mac.mm",
313 "file_version_info_win.cc", 313 "file_version_info_win.cc",
314 "file_version_info_win.h", 314 "file_version_info_win.h",
315 "files/dir_reader_fallback.h", 315 "files/dir_reader_fallback.h",
316 "files/dir_reader_linux.h", 316 "files/dir_reader_linux.h",
317 "files/dir_reader_posix.h", 317 "files/dir_reader_posix.h",
318 "files/file.cc", 318 "files/file.cc",
319 "files/file_descriptor_watcher_posix.cc",
320 "files/file_descriptor_watcher_posix.h",
319 "files/file_enumerator.cc", 321 "files/file_enumerator.cc",
320 "files/file_enumerator.h", 322 "files/file_enumerator.h",
321 "files/file_enumerator_posix.cc", 323 "files/file_enumerator_posix.cc",
322 "files/file_enumerator_win.cc", 324 "files/file_enumerator_win.cc",
323 "files/file_path.cc", 325 "files/file_path.cc",
324 "files/file_path.h", 326 "files/file_path.h",
325 "files/file_path_constants.cc", 327 "files/file_path_constants.cc",
326 "files/file_path_watcher.cc", 328 "files/file_path_watcher.cc",
327 "files/file_path_watcher.h", 329 "files/file_path_watcher.h",
328 "files/file_path_watcher_fsevents.cc", 330 "files/file_path_watcher_fsevents.cc",
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 "threading/platform_thread_linux.cc", 1118 "threading/platform_thread_linux.cc",
1117 ] 1119 ]
1118 set_sources_assignment_filter(sources_assignment_filter) 1120 set_sources_assignment_filter(sources_assignment_filter)
1119 1121
1120 sources -= [ 1122 sources -= [
1121 "cpu.cc", 1123 "cpu.cc",
1122 "debug/crash_logging.cc", 1124 "debug/crash_logging.cc",
1123 "debug/crash_logging.h", 1125 "debug/crash_logging.h",
1124 "debug/stack_trace.cc", 1126 "debug/stack_trace.cc",
1125 "debug/stack_trace_posix.cc", 1127 "debug/stack_trace_posix.cc",
1128 "files/file_descriptor_watcher_posix.cc",
1129 "files/file_descriptor_watcher_posix.h",
1126 "files/file_enumerator_posix.cc", 1130 "files/file_enumerator_posix.cc",
1127 "files/file_proxy.cc", 1131 "files/file_proxy.cc",
1128 "files/file_util_proxy.cc", 1132 "files/file_util_proxy.cc",
1129 "files/important_file_writer.cc", 1133 "files/important_file_writer.cc",
1130 "files/important_file_writer.h", 1134 "files/important_file_writer.h",
1131 "files/scoped_temp_dir.cc", 1135 "files/scoped_temp_dir.cc",
1132 "memory/discardable_memory.cc", 1136 "memory/discardable_memory.cc",
1133 "memory/discardable_memory.h", 1137 "memory/discardable_memory.h",
1134 "memory/discardable_memory_allocator.cc", 1138 "memory/discardable_memory_allocator.cc",
1135 "memory/discardable_memory_allocator.h", 1139 "memory/discardable_memory_allocator.h",
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1774 "debug/leak_tracker_unittest.cc", 1778 "debug/leak_tracker_unittest.cc",
1775 "debug/proc_maps_linux_unittest.cc", 1779 "debug/proc_maps_linux_unittest.cc",
1776 "debug/scoped_thread_heap_usage_unittest.cc", 1780 "debug/scoped_thread_heap_usage_unittest.cc",
1777 "debug/stack_trace_unittest.cc", 1781 "debug/stack_trace_unittest.cc",
1778 "debug/task_annotator_unittest.cc", 1782 "debug/task_annotator_unittest.cc",
1779 "deferred_sequenced_task_runner_unittest.cc", 1783 "deferred_sequenced_task_runner_unittest.cc",
1780 "environment_unittest.cc", 1784 "environment_unittest.cc",
1781 "feature_list_unittest.cc", 1785 "feature_list_unittest.cc",
1782 "file_version_info_win_unittest.cc", 1786 "file_version_info_win_unittest.cc",
1783 "files/dir_reader_posix_unittest.cc", 1787 "files/dir_reader_posix_unittest.cc",
1788 "files/file_descriptor_watcher_posix_unittest.cc",
1784 "files/file_locking_unittest.cc", 1789 "files/file_locking_unittest.cc",
1785 "files/file_path_unittest.cc", 1790 "files/file_path_unittest.cc",
1786 "files/file_path_watcher_unittest.cc", 1791 "files/file_path_watcher_unittest.cc",
1787 "files/file_proxy_unittest.cc", 1792 "files/file_proxy_unittest.cc",
1788 "files/file_unittest.cc", 1793 "files/file_unittest.cc",
1789 "files/file_util_proxy_unittest.cc", 1794 "files/file_util_proxy_unittest.cc",
1790 "files/file_util_unittest.cc", 1795 "files/file_util_unittest.cc",
1791 "files/important_file_writer_unittest.cc", 1796 "files/important_file_writer_unittest.cc",
1792 "files/memory_mapped_file_unittest.cc", 1797 "files/memory_mapped_file_unittest.cc",
1793 "files/scoped_temp_dir_unittest.cc", 1798 "files/scoped_temp_dir_unittest.cc",
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
2447 testonly = true 2452 testonly = true
2448 deps = [ 2453 deps = [
2449 ":base_java", 2454 ":base_java",
2450 ] 2455 ]
2451 java_files = [ 2456 java_files = [
2452 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2457 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2453 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2458 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2454 ] 2459 ]
2455 } 2460 }
2456 } 2461 }
OLDNEW
« no previous file with comments | « no previous file | base/files/file_descriptor_watcher_posix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698