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

Unified Diff: util/util.gyp

Issue 612923004: util_test: Specify libbsm link dependency properly (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/util.gyp
diff --git a/util/util.gyp b/util/util.gyp
index c476d7ab558eb1f833b1b7c00bfb7c1caf72203c..80df85843be58121edffb4dd2a4e60906aa14faa 100644
--- a/util/util.gyp
+++ b/util/util.gyp
@@ -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',
],
},
}],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698