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

Side by Side Diff: base/BUILD.gn

Issue 1755973002: Move non-content specific parts of content::MachBroker into base::MachPortBroker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove libbsm from content build rules. Created 4 years, 9 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') | 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 "mac/launchd.cc", 406 "mac/launchd.cc",
407 "mac/launchd.h", 407 "mac/launchd.h",
408 "mac/libdispatch_task_runner.cc", 408 "mac/libdispatch_task_runner.cc",
409 "mac/libdispatch_task_runner.h", 409 "mac/libdispatch_task_runner.h",
410 "mac/mac_logging.h", 410 "mac/mac_logging.h",
411 "mac/mac_logging.mm", 411 "mac/mac_logging.mm",
412 "mac/mac_util.h", 412 "mac/mac_util.h",
413 "mac/mac_util.mm", 413 "mac/mac_util.mm",
414 "mac/mach_logging.cc", 414 "mac/mach_logging.cc",
415 "mac/mach_logging.h", 415 "mac/mach_logging.h",
416 "mac/mach_port_broker.h",
417 "mac/mach_port_broker.mm",
416 "mac/objc_property_releaser.h", 418 "mac/objc_property_releaser.h",
417 "mac/objc_property_releaser.mm", 419 "mac/objc_property_releaser.mm",
418 "mac/os_crash_dumps.cc", 420 "mac/os_crash_dumps.cc",
419 "mac/os_crash_dumps.h", 421 "mac/os_crash_dumps.h",
420 "mac/scoped_aedesc.h", 422 "mac/scoped_aedesc.h",
421 "mac/scoped_authorizationref.h", 423 "mac/scoped_authorizationref.h",
422 "mac/scoped_block.h", 424 "mac/scoped_block.h",
423 "mac/scoped_cftyperef.h", 425 "mac/scoped_cftyperef.h",
424 "mac/scoped_ioobject.h", 426 "mac/scoped_ioobject.h",
425 "mac/scoped_ioplugininterface.h", 427 "mac/scoped_ioplugininterface.h",
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
1175 # Non-Windows. 1177 # Non-Windows.
1176 deps += [ "//base/third_party/libevent" ] 1178 deps += [ "//base/third_party/libevent" ]
1177 } 1179 }
1178 1180
1179 # Desktop Mac. 1181 # Desktop Mac.
1180 if (is_mac) { 1182 if (is_mac) {
1181 sources += [ 1183 sources += [
1182 "trace_event/malloc_dump_provider.cc", 1184 "trace_event/malloc_dump_provider.cc",
1183 "trace_event/malloc_dump_provider.h", 1185 "trace_event/malloc_dump_provider.h",
1184 ] 1186 ]
1187 libs = [ "bsm" ]
1185 } 1188 }
1186 1189
1187 # Mac or iOS. 1190 # Mac or iOS.
1188 if (is_mac || is_ios) { 1191 if (is_mac || is_ios) {
1189 sources -= [ 1192 sources -= [
1190 "memory/shared_memory_posix.cc", 1193 "memory/shared_memory_posix.cc",
1191 "native_library_posix.cc", 1194 "native_library_posix.cc",
1192 "strings/sys_string_conversions_posix.cc", 1195 "strings/sys_string_conversions_posix.cc",
1193 "threading/platform_thread_internal_posix.cc", 1196 "threading/platform_thread_internal_posix.cc",
1194 ] 1197 ]
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1619 "json/json_writer_unittest.cc", 1622 "json/json_writer_unittest.cc",
1620 "json/string_escape_unittest.cc", 1623 "json/string_escape_unittest.cc",
1621 "lazy_instance_unittest.cc", 1624 "lazy_instance_unittest.cc",
1622 "logging_unittest.cc", 1625 "logging_unittest.cc",
1623 "mac/bind_objc_block_unittest.mm", 1626 "mac/bind_objc_block_unittest.mm",
1624 "mac/call_with_eh_frame_unittest.mm", 1627 "mac/call_with_eh_frame_unittest.mm",
1625 "mac/dispatch_source_mach_unittest.cc", 1628 "mac/dispatch_source_mach_unittest.cc",
1626 "mac/foundation_util_unittest.mm", 1629 "mac/foundation_util_unittest.mm",
1627 "mac/libdispatch_task_runner_unittest.cc", 1630 "mac/libdispatch_task_runner_unittest.cc",
1628 "mac/mac_util_unittest.mm", 1631 "mac/mac_util_unittest.mm",
1632 "mac/mach_port_broker_unittest.cc",
1629 "mac/objc_property_releaser_unittest.mm", 1633 "mac/objc_property_releaser_unittest.mm",
1630 "mac/scoped_nsobject_unittest.mm", 1634 "mac/scoped_nsobject_unittest.mm",
1631 "mac/scoped_objc_class_swizzler_unittest.mm", 1635 "mac/scoped_objc_class_swizzler_unittest.mm",
1632 "mac/scoped_sending_event_unittest.mm", 1636 "mac/scoped_sending_event_unittest.mm",
1633 "md5_unittest.cc", 1637 "md5_unittest.cc",
1634 "memory/aligned_memory_unittest.cc", 1638 "memory/aligned_memory_unittest.cc",
1635 "memory/discardable_shared_memory_unittest.cc", 1639 "memory/discardable_shared_memory_unittest.cc",
1636 "memory/linked_ptr_unittest.cc", 1640 "memory/linked_ptr_unittest.cc",
1637 "memory/memory_pressure_monitor_chromeos_unittest.cc", 1641 "memory/memory_pressure_monitor_chromeos_unittest.cc",
1638 "memory/memory_pressure_monitor_win_unittest.cc", 1642 "memory/memory_pressure_monitor_win_unittest.cc",
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
2095 2099
2096 # GYP: //base.gyp:base_java_unittest_support 2100 # GYP: //base.gyp:base_java_unittest_support
2097 android_library("base_java_unittest_support") { 2101 android_library("base_java_unittest_support") {
2098 deps = [ 2102 deps = [
2099 ":base_java", 2103 ":base_java",
2100 ] 2104 ]
2101 java_files = 2105 java_files =
2102 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2106 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2103 } 2107 }
2104 } 2108 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698