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

Side by Side Diff: gyp/skflate.gyp

Issue 152513007: Build Skia for a bare-bones embedded Linux system. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: again Created 6 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
OLDNEW
(Empty)
1 # Target for including SkFlate.
2 {
3 'targets': [
4 {
5 'target_name': 'skflate',
6 'type': 'static_library',
7 'dependencies': [
8 'skia_lib.gyp:skia_lib',
9 ],
10 'conditions': [
11 # When zlib is not availible on a system,
12 # SkFlate::HaveFlate will just return false.
13 [ 'skia_os != "win"',
14 {
15 'dependencies': [
16 'zlib.gyp:zlib',
17 ],
18 }
19 ],
20 ],
21 'sources': [
22 '../src/core/SkFlate.cpp',
23 ],
24 },
25 ],
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698