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

Side by Side Diff: gyp/nanomsg.gyp

Issue 803113003: Silence warnings from libnanomsg on Mac like we do on Linux. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'skia_warnings_as_errors': 0, 3 'skia_warnings_as_errors': 0,
4 }, 4 },
5 'targets': [{ 5 'targets': [{
6 # Draws pictures cross-process. 6 # Draws pictures cross-process.
7 'target_name': 'nanomsg_picture_demo', 7 'target_name': 'nanomsg_picture_demo',
8 'type': 'executable', 8 'type': 'executable',
9 'dependencies': [ 9 'dependencies': [
10 'skia_lib.gyp:skia_lib', 10 'skia_lib.gyp:skia_lib',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 'NN_HAVE_SEMAPHORE', 160 'NN_HAVE_SEMAPHORE',
161 'NN_HAVE_SOCKETPAIR', 161 'NN_HAVE_SOCKETPAIR',
162 'NN_USE_EPOLL', 162 'NN_USE_EPOLL',
163 'NN_USE_EVENTFD', 163 'NN_USE_EVENTFD',
164 'NN_USE_IFADDRS', 164 'NN_USE_IFADDRS',
165 'STDC_HEADERS', 165 'STDC_HEADERS',
166 '_GNU_SOURCE', 166 '_GNU_SOURCE',
167 ], 167 ],
168 }], 168 }],
169 ['skia_os == "mac"', { 169 ['skia_os == "mac"', {
170 'xcode_settings': {
171 'WARNING_CFLAGS': [ '-w' ],
172 },
170 'defines=': [ # equals sign throws away most Skia defines (j ust noise) 173 'defines=': [ # equals sign throws away most Skia defines (j ust noise)
171 'HAVE_ARPA_INET_H', 174 'HAVE_ARPA_INET_H',
172 'HAVE_DLFCN_H', 175 'HAVE_DLFCN_H',
173 'HAVE_GETIFADDRS', 176 'HAVE_GETIFADDRS',
174 'HAVE_INTTYPES_H', 177 'HAVE_INTTYPES_H',
175 'HAVE_KQUEUE', 178 'HAVE_KQUEUE',
176 'HAVE_MEMORY_H', 179 'HAVE_MEMORY_H',
177 'HAVE_NETDB_H', 180 'HAVE_NETDB_H',
178 'HAVE_NETINET_IN_H', 181 'HAVE_NETINET_IN_H',
179 'HAVE_PIPE', 182 'HAVE_PIPE',
(...skipping 18 matching lines...) Expand all
198 'NN_USE_IFADDRS', 201 'NN_USE_IFADDRS',
199 'NN_USE_KQUEUE', 202 'NN_USE_KQUEUE',
200 'NN_USE_PIPE', 203 'NN_USE_PIPE',
201 'STDC_HEADERS', 204 'STDC_HEADERS',
202 '_THREAD_SAFE', 205 '_THREAD_SAFE',
203 ], 206 ],
204 }], 207 }],
205 ] 208 ]
206 }] 209 }]
207 } 210 }
OLDNEW
« 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