diff options
author | mtklein <mtklein@chromium.org> | 2014-08-04 09:36:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-04 09:36:45 -0700 |
commit | 80bddedbb11307a8e209a23d7940dfb5cba00feb (patch) | |
tree | 1e7ad8c4178263a50c173a396da655a9d98d7768 | |
parent | e7ce26d360a5ca36085be2bbb2cee8b62a0ed935 (diff) |
small skia_shared_lib=1 build fix for cross-process picture demo
BUG=skia:
R=mtklein@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/439333002
-rw-r--r-- | gyp/nanomsg.gyp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gyp/nanomsg.gyp b/gyp/nanomsg.gyp index 1a88c4a719..eeb64cd5dd 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', |