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

Side by Side Diff: gyp/giflib.gyp

Issue 1046923004: Silence giflib warning on mac (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Silence giflib warnings on mac Created 5 years, 8 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 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 # Copyright 2014 Google Inc. 1 # Copyright 2014 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 'skia_warnings_as_errors': 0, 8 'skia_warnings_as_errors': 0,
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 12 matching lines...) Expand all
23 'dependencies': [ 23 'dependencies': [
24 ], 24 ],
25 'direct_dependent_settings': { 25 'direct_dependent_settings': {
26 'include_dirs': [ 26 'include_dirs': [
27 '../third_party/externals/giflib', 27 '../third_party/externals/giflib',
28 ], 28 ],
29 }, 29 },
30 'cflags': [ 30 'cflags': [
31 '-w', 31 '-w',
32 ], 32 ],
33 'xcode_settings': {
34 'WARNING_CFLAGS': [
35 '-w'
36 ],
37 },
33 'sources': [ 38 'sources': [
34 '../third_party/externals/giflib/dgif_lib.c', 39 '../third_party/externals/giflib/dgif_lib.c',
35 '../third_party/externals/giflib/gifalloc.c', 40 '../third_party/externals/giflib/gifalloc.c',
36 '../third_party/externals/giflib/gif_err.c', 41 '../third_party/externals/giflib/gif_err.c',
37 ], 42 ],
38 }, { # skia_android_framework 43 }, { # skia_android_framework
39 'type': 'none', 44 'type': 'none',
40 'direct_dependent_settings': { 45 'direct_dependent_settings': {
41 'libraries' : [ 46 'libraries' : [
42 'libgif.a', 47 'libgif.a',
43 ], 48 ],
44 'include_dirs': [ 49 'include_dirs': [
45 'external/giflib', 50 'external/giflib',
46 ] 51 ]
47 } 52 }
48 } 53 }
49 ] 54 ]
50 ] 55 ]
51 } 56 }
52 ] 57 ]
53 } 58 }
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