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

Side by Side Diff: gyp/giflib.gyp

Issue 152513007: Build Skia for a bare-bones embedded Linux system. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: changes Created 6 years, 10 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
OLDNEW
(Empty)
1 # Copyright 2014 Google Inc.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 {
7 'variables': {
8 'skia_warnings_as_errors': 0,
9 },
10 'targets': [
11 {
12 'target_name': 'giflib',
13 'conditions': [
14 ['skia_giflib_static', {
15 'type': 'static_library',
16 'defines': [
17 'HAVE_CONFIG_H',
18 ],
19 'include_dirs': [
20 '../third_party/externals/giflib',
21 ],
22 'dependencies': [
23 ],
24 'direct_dependent_settings': {
25 'include_dirs': [
26 '../third_party/externals/giflib',
27 ],
28 },
29 'cflags': [
30 '-w',
31 ],
32 'sources': [
33 '../third_party/externals/giflib/dgif_lib.c',
34 '../third_party/externals/giflib/gifalloc.c',
35 '../third_party/externals/giflib/gif_err.c',
36 ],
37 }, {
38 'type': 'none',
39 'direct_dependent_settings': {
40 'link_settings': {
41 'libraries': [
42 '-lgif',
43 ],
44 }
45 }
46 }]
47 ]
48 }
49 ]
50 }
51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698