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

Side by Side Diff: gyp/pdf.gyp

Issue 920513003: Make filters use SkImage instead of SkBitmap Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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
1 # This file builds the PDF backend. 1 # This file builds the PDF backend.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'pdf', 5 'target_name': 'pdf',
6 'product_name': 'skia_pdf', 6 'product_name': 'skia_pdf',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'skia_lib.gyp:skia_lib', 10 'skia_lib.gyp:skia_lib',
11 'skflate.gyp:skflate', 11 'skflate.gyp:skflate',
12 ], 12 ],
13 'includes': [ 13 'includes': [
14 'pdf.gypi', 14 'pdf.gypi',
15 ], 15 ],
16 'include_dirs': [ 16 'include_dirs': [
17 '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h 17 '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h
18 '../src/image',
18 '../src/pdf', 19 '../src/pdf',
19 '../src/utils', # needed to get SkBitSet.h 20 '../src/utils', # needed to get SkBitSet.h
20 ], 21 ],
21 'sources': [ 22 'sources': [
22 'pdf.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld). 23 'pdf.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld).
23 ], 24 ],
24 'conditions': [ 25 'conditions': [
25 [ 'skia_android_framework', { 26 [ 'skia_android_framework', {
26 # Add SFTNLY support for PDF (which in turns depends on ICU) 27 # Add SFTNLY support for PDF (which in turns depends on ICU)
27 'include_dirs': [ 28 'include_dirs': [
(...skipping 13 matching lines...) Expand all
41 'defines': [ 42 'defines': [
42 'SK_SUPPORT_PDF', 43 'SK_SUPPORT_PDF',
43 ], 44 ],
44 'include_dirs': [ 45 'include_dirs': [
45 '../include/core', # SkDocument.h 46 '../include/core', # SkDocument.h
46 ], 47 ],
47 }, 48 },
48 }, 49 },
49 ], 50 ],
50 } 51 }
OLDNEW
« no previous file with comments | « gyp/effects.gyp ('k') | gyp/utils.gyp » ('j') | include/core/SkCanvas.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698