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

Side by Side Diff: base/BUILD.gn

Issue 2123333003: Remove base::mac::LibDispatchTaskRunner and migrate its sole client to plain libdispatch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak comments Created 4 years, 5 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/base.gyp » ('j') | base/files/file_path_watcher_fsevents.cc » ('J')
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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 "mac/close_nocancel.cc", 399 "mac/close_nocancel.cc",
400 "mac/cocoa_protocols.h", 400 "mac/cocoa_protocols.h",
401 "mac/dispatch_source_mach.cc", 401 "mac/dispatch_source_mach.cc",
402 "mac/dispatch_source_mach.h", 402 "mac/dispatch_source_mach.h",
403 "mac/foundation_util.h", 403 "mac/foundation_util.h",
404 "mac/foundation_util.mm", 404 "mac/foundation_util.mm",
405 "mac/launch_services_util.cc", 405 "mac/launch_services_util.cc",
406 "mac/launch_services_util.h", 406 "mac/launch_services_util.h",
407 "mac/launchd.cc", 407 "mac/launchd.cc",
408 "mac/launchd.h", 408 "mac/launchd.h",
409 "mac/libdispatch_task_runner.cc",
410 "mac/libdispatch_task_runner.h",
411 "mac/mac_logging.h", 409 "mac/mac_logging.h",
412 "mac/mac_logging.mm", 410 "mac/mac_logging.mm",
413 "mac/mac_util.h", 411 "mac/mac_util.h",
414 "mac/mac_util.mm", 412 "mac/mac_util.mm",
415 "mac/mach_logging.cc", 413 "mac/mach_logging.cc",
416 "mac/mach_logging.h", 414 "mac/mach_logging.h",
417 "mac/mach_port_broker.h", 415 "mac/mach_port_broker.h",
418 "mac/mach_port_broker.mm", 416 "mac/mach_port_broker.mm",
419 "mac/mach_port_util.cc", 417 "mac/mach_port_util.cc",
420 "mac/mach_port_util.h", 418 "mac/mach_port_util.h",
(...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1786 "json/json_value_converter_unittest.cc", 1784 "json/json_value_converter_unittest.cc",
1787 "json/json_value_serializer_unittest.cc", 1785 "json/json_value_serializer_unittest.cc",
1788 "json/json_writer_unittest.cc", 1786 "json/json_writer_unittest.cc",
1789 "json/string_escape_unittest.cc", 1787 "json/string_escape_unittest.cc",
1790 "lazy_instance_unittest.cc", 1788 "lazy_instance_unittest.cc",
1791 "logging_unittest.cc", 1789 "logging_unittest.cc",
1792 "mac/bind_objc_block_unittest.mm", 1790 "mac/bind_objc_block_unittest.mm",
1793 "mac/call_with_eh_frame_unittest.mm", 1791 "mac/call_with_eh_frame_unittest.mm",
1794 "mac/dispatch_source_mach_unittest.cc", 1792 "mac/dispatch_source_mach_unittest.cc",
1795 "mac/foundation_util_unittest.mm", 1793 "mac/foundation_util_unittest.mm",
1796 "mac/libdispatch_task_runner_unittest.cc",
1797 "mac/mac_util_unittest.mm", 1794 "mac/mac_util_unittest.mm",
1798 "mac/mach_port_broker_unittest.cc", 1795 "mac/mach_port_broker_unittest.cc",
1799 "mac/objc_property_releaser_unittest.mm", 1796 "mac/objc_property_releaser_unittest.mm",
1800 "mac/scoped_nsobject_unittest.mm", 1797 "mac/scoped_nsobject_unittest.mm",
1801 "mac/scoped_objc_class_swizzler_unittest.mm", 1798 "mac/scoped_objc_class_swizzler_unittest.mm",
1802 "mac/scoped_sending_event_unittest.mm", 1799 "mac/scoped_sending_event_unittest.mm",
1803 "md5_unittest.cc", 1800 "md5_unittest.cc",
1804 "memory/aligned_memory_unittest.cc", 1801 "memory/aligned_memory_unittest.cc",
1805 "memory/discardable_shared_memory_unittest.cc", 1802 "memory/discardable_shared_memory_unittest.cc",
1806 "memory/linked_ptr_unittest.cc", 1803 "memory/linked_ptr_unittest.cc",
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
2419 2416
2420 # GYP: //base.gyp:base_java_unittest_support 2417 # GYP: //base.gyp:base_java_unittest_support
2421 android_library("base_java_unittest_support") { 2418 android_library("base_java_unittest_support") {
2422 deps = [ 2419 deps = [
2423 ":base_java", 2420 ":base_java",
2424 ] 2421 ]
2425 java_files = 2422 java_files =
2426 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2423 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2427 } 2424 }
2428 } 2425 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/files/file_path_watcher_fsevents.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698