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

Unified Diff: gyp/nanomsg.gyp

Issue 439333002: small skia_shared_lib=1 build fix for cross-process picture demo (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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: gyp/nanomsg.gyp
diff --git a/gyp/nanomsg.gyp b/gyp/nanomsg.gyp
index 1a88c4a719f48743b910f531f00c529c1ed4ca7b..eeb64cd5dd018e9e9c44bad57e3ff98be7eaf776 100644
--- a/gyp/nanomsg.gyp
+++ b/gyp/nanomsg.gyp
@@ -115,9 +115,12 @@
'conditions': [
['skia_os == "linux"', {
'cflags': [ '-Wno-missing-field-initializers' ],
- 'libraries': [ '-lanl' ], # Provides getaddrinfo_a and co.
+ 'libraries': [
+ '-lpthread',
+ '-lanl', # Provides getaddrinfo_a and co.
+ ],
'direct_dependent_settings': {
- 'libraries': [ '-lanl' ],
+ 'libraries': [ '-lpthread', '-lanl' ],
},
'defines=': [ # equals sign throws away most Skia defines (just noise)
'HAVE_ACCEPT4',
« 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