mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-09 14:06:33 +00:00
util_test: specify libbsm link dependency properly.
7dda7b322881 accidentally moved the libbsm.dylib dependency from util_test_lib to util_test. It is only used by test/mac/mach_multiprocess.cc in util_test_lib. Meanwhile, util_test should link against Foundation.framework, which is used by three tests in util/mac: launchd_test.mm, mac_util_test.mm, and service_management_test.mm. R=scottmg@chromium.org Review URL: https://codereview.chromium.org/612923004
This commit is contained in:
parent
7b2e7efcc2
commit
47f17926e4
@ -183,6 +183,15 @@
|
||||
'test/posix/close_multiple.cc',
|
||||
'test/posix/close_multiple.h',
|
||||
],
|
||||
'conditions': [
|
||||
['OS=="mac"', {
|
||||
'link_settings': {
|
||||
'libraries': [
|
||||
'$(SDKROOT)/usr/lib/libbsm.dylib',
|
||||
],
|
||||
},
|
||||
}],
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'util_test',
|
||||
@ -241,7 +250,7 @@
|
||||
['OS=="mac"', {
|
||||
'link_settings': {
|
||||
'libraries': [
|
||||
'$(SDKROOT)/usr/lib/libbsm.dylib',
|
||||
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
||||
],
|
||||
},
|
||||
}],
|
||||
|
Loading…
x
Reference in New Issue
Block a user