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

Unified Diff: tools/tools.gyp

Issue 620553004: Superficial gyp changes to not immediately error out on Windows (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 3 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 | util/util.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/tools.gyp
diff --git a/tools/tools.gyp b/tools/tools.gyp
index 344d4034a6d7dc1ef405c32e384491d755096ba0..22f6fc582d13c59b115fea244ab106d48eead65c 100644
--- a/tools/tools.gyp
+++ b/tools/tools.gyp
@@ -72,12 +72,16 @@
'include_dirs': [
'..',
],
- 'link_settings': {
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
- '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
- ],
- },
+ 'conditions': [
Mark Mentovai 2014/09/30 19:55:01 None of these tools make any sense off of Mac. We
scottmg 2014/09/30 19:59:49 Done.
+ ['OS=="mac"', {
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
+ ],
+ },
+ }],
+ ],
'sources': [
'on_demand_service_tool.mm',
],
« no previous file with comments | « no previous file | util/util.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698