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

Unified Diff: test/lib/TestGyp.py

Issue 7395025: make: Put shared_libraries into PRODUCT_DIR on mac. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 9 years, 5 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 | « pylib/gyp/generator/make.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/lib/TestGyp.py
===================================================================
--- test/lib/TestGyp.py (revision 951)
+++ test/lib/TestGyp.py (working copy)
@@ -385,7 +385,7 @@
result.extend(['out', configuration])
if type == self.STATIC_LIB:
result.append(kw.get('libdir', 'obj.target'))
- elif type == self.SHARED_LIB:
+ elif type == self.SHARED_LIB and sys.platform != 'darwin':
result.append(kw.get('libdir', 'lib.target'))
result.append(self.built_file_basename(name, type, **kw))
return self.workpath(*result)
« no previous file with comments | « pylib/gyp/generator/make.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698