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

Side by Side Diff: base/base.gyp

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 | « base/BUILD.gn ('k') | base/base.gypi » ('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) 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ['OS == "mac" or (OS == "ios" and _toolset == "host")', { 195 ['OS == "mac" or (OS == "ios" and _toolset == "host")', {
196 'link_settings': { 196 'link_settings': {
197 'libraries': [ 197 'libraries': [
198 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 198 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
199 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor k', 199 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor k',
200 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', 200 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
201 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 201 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
202 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 202 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
203 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', 203 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
204 '$(SDKROOT)/System/Library/Frameworks/Security.framework', 204 '$(SDKROOT)/System/Library/Frameworks/Security.framework',
205 '$(SDKROOT)/usr/lib/libbsm.dylib',
205 ], 206 ],
206 }, 207 },
207 }], 208 }],
208 ['OS == "ios" and _toolset != "host"', { 209 ['OS == "ios" and _toolset != "host"', {
209 'link_settings': { 210 'link_settings': {
210 'libraries': [ 211 'libraries': [
211 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 212 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
212 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', 213 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
213 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', 214 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
214 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 215 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 'json/json_writer_unittest.cc', 443 'json/json_writer_unittest.cc',
443 'json/string_escape_unittest.cc', 444 'json/string_escape_unittest.cc',
444 'lazy_instance_unittest.cc', 445 'lazy_instance_unittest.cc',
445 'logging_unittest.cc', 446 'logging_unittest.cc',
446 'mac/bind_objc_block_unittest.mm', 447 'mac/bind_objc_block_unittest.mm',
447 'mac/call_with_eh_frame_unittest.mm', 448 'mac/call_with_eh_frame_unittest.mm',
448 'mac/dispatch_source_mach_unittest.cc', 449 'mac/dispatch_source_mach_unittest.cc',
449 'mac/foundation_util_unittest.mm', 450 'mac/foundation_util_unittest.mm',
450 'mac/libdispatch_task_runner_unittest.cc', 451 'mac/libdispatch_task_runner_unittest.cc',
451 'mac/mac_util_unittest.mm', 452 'mac/mac_util_unittest.mm',
453 'mac/mach_port_broker_unittest.cc',
452 'mac/objc_property_releaser_unittest.mm', 454 'mac/objc_property_releaser_unittest.mm',
453 'mac/scoped_nsobject_unittest.mm', 455 'mac/scoped_nsobject_unittest.mm',
454 'mac/scoped_objc_class_swizzler_unittest.mm', 456 'mac/scoped_objc_class_swizzler_unittest.mm',
455 'mac/scoped_sending_event_unittest.mm', 457 'mac/scoped_sending_event_unittest.mm',
456 'md5_unittest.cc', 458 'md5_unittest.cc',
457 'memory/aligned_memory_unittest.cc', 459 'memory/aligned_memory_unittest.cc',
458 'memory/discardable_shared_memory_unittest.cc', 460 'memory/discardable_shared_memory_unittest.cc',
459 'memory/linked_ptr_unittest.cc', 461 'memory/linked_ptr_unittest.cc',
460 'memory/memory_pressure_listener_unittest.cc', 462 'memory/memory_pressure_listener_unittest.cc',
461 'memory/memory_pressure_monitor_chromeos_unittest.cc', 463 'memory/memory_pressure_monitor_chromeos_unittest.cc',
(...skipping 1221 matching lines...) Expand 10 before | Expand all | Expand 10 after
1683 '../build/isolate.gypi', 1685 '../build/isolate.gypi',
1684 ], 1686 ],
1685 'sources': [ 1687 'sources': [
1686 'base_unittests.isolate', 1688 'base_unittests.isolate',
1687 ], 1689 ],
1688 }, 1690 },
1689 ], 1691 ],
1690 }], 1692 }],
1691 ], 1693 ],
1692 } 1694 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698