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

Side by Side Diff: gyp/giflib.gyp

Issue 1314633002: Update giflib to 5.1.1 (AOSP hash) (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Icu fix Created 5 years, 3 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 | « DEPS ('k') | gyp/icu.gyp » ('j') | 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 17 matching lines...) Expand all
28 '-w', 28 '-w',
29 ], 29 ],
30 'xcode_settings': { 30 'xcode_settings': {
31 'WARNING_CFLAGS': [ 31 'WARNING_CFLAGS': [
32 '-w' 32 '-w'
33 ], 33 ],
34 }, 34 },
35 'msvs_settings': { 35 'msvs_settings': {
36 'VCCLCompilerTool': { 36 'VCCLCompilerTool': {
37 'AdditionalOptions': [ 37 'AdditionalOptions': [
38 '/w', 38 '/wd4996',
39 '/wd4018',
40 '/wd4267',
39 ], 41 ],
40 }, 42 },
41 }, 43 },
42 'sources': [ 44 'sources': [
43 '../third_party/externals/giflib/dgif_lib.c', 45 '../third_party/externals/giflib/dgif_lib.c',
44 '../third_party/externals/giflib/gifalloc.c', 46 '../third_party/externals/giflib/gifalloc.c',
45 '../third_party/externals/giflib/gif_err.c', 47 '../third_party/externals/giflib/gif_err.c',
46 ], 48 ],
47 'conditions' : [ 49 'conditions' : [
48 [ 'skia_os == "win"', { 50 [ 'skia_os == "win"', {
(...skipping 13 matching lines...) Expand all
62 'include_dirs': [ 64 'include_dirs': [
63 'external/giflib', 65 'external/giflib',
64 ] 66 ]
65 } 67 }
66 } 68 }
67 ] 69 ]
68 ] 70 ]
69 } 71 }
70 ] 72 ]
71 } 73 }
OLDNEW
« no previous file with comments | « DEPS ('k') | gyp/icu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698