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

Side by Side Diff: gyp/codec.gyp

Issue 1774503004: Update android_make to support both --gcc and --clang options. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: better way to handle codec.gyp Created 4 years, 9 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 | gyp/common_conditions.gypi » ('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 2015 Google Inc. 1 # Copyright 2015 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 # Copyright 2015 Google Inc. 5 # Copyright 2015 Google Inc.
6 # 6 #
7 # Use of this source code is governed by a BSD-style license that can be 7 # Use of this source code is governed by a BSD-style license that can be
8 # found in the LICENSE file. 8 # found in the LICENSE file.
9 9
10 # GYP file for codec project. 10 # GYP file for codec project.
11 { 11 {
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'codec', 14 'target_name': 'codec',
15 'product_name': 'skia_codec', 15 'product_name': 'skia_codec',
16 'type': 'static_library', 16 'type': 'static_library',
17 'standalone_static_library': 1, 17 'standalone_static_library': 1,
18 'dependencies': [ 18 'dependencies': [
19 'core.gyp:*', 19 'core.gyp:*',
20 'giflib.gyp:giflib', 20 'giflib.gyp:giflib',
21 'libjpeg-turbo-selector.gyp:libjpeg-turbo-selector', 21 'libjpeg-turbo-selector.gyp:libjpeg-turbo-selector',
22 'libpng.gyp:libpng', 22 'libpng.gyp:libpng',
23 'libwebp.gyp:libwebp', 23 'libwebp.gyp:libwebp',
24 ], 24 ],
25 'cflags':[ 25 'cflags':[
26 # FIXME: This gets around a warning: "Argument might be clobbered by lon gjmp". 26 # FIXME: This gets around a warning: "Argument might be clobbered by lon gjmp".
27 '-Wno-clobbered -Wno-error', 27 '-Wno-clobbered -Wno-error',
28 ], 28 ],
29 'include_dirs': [ 29 'include_dirs': [
30 '../include/codec', 30 '../include/codec',
31 '../include/private', 31 '../include/private',
32 '../src/codec', 32 '../src/codec',
33 '../src/core', 33 '../src/core',
34 '../src/utils', 34 '../src/utils',
35 ], 35 ],
36 'sources': [ 36 'sources': [
37 '../src/codec/SkAndroidCodec.cpp', 37 '../src/codec/SkAndroidCodec.cpp',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 }], 137 }],
138 ['skia_os == "chromeos"', { 138 ['skia_os == "chromeos"', {
139 'link_settings': { 139 'link_settings': {
140 'libraries': ['-lrt', ], 140 'libraries': ['-lrt', ],
141 }, 141 },
142 }], 142 }],
143 ], 143 ],
144 }, 144 },
145 ], 145 ],
146 } 146 }
OLDNEW
« no previous file with comments | « no previous file | gyp/common_conditions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698