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

Side by Side Diff: gyp/pdf.gyp

Issue 1394263003: SkPDF: Optionally output PDF/A-2b archive format. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-10-12 (Monday) 11:49:14 EDT Created 5 years, 2 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 | « gyp/common_variables.gypi ('k') | gyp/pdf.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 # This file builds the PDF backend. 5 # This file builds the PDF backend.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'nopdf', 9 'target_name': 'nopdf',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 22 matching lines...) Expand all
33 '../src/utils', # needed to get SkBitSet.h 33 '../src/utils', # needed to get SkBitSet.h
34 ], 34 ],
35 'sources': [ 35 'sources': [
36 'pdf.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld). 36 'pdf.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld).
37 ], 37 ],
38 'conditions': [ 38 'conditions': [
39 [ 'skia_pdf_use_sfntly and not skia_android_framework and \ 39 [ 'skia_pdf_use_sfntly and not skia_android_framework and \
40 skia_os in ["win", "android", "linux", "chromeos", "mac"]', 40 skia_os in ["win", "android", "linux", "chromeos", "mac"]',
41 { 'dependencies': [ 'sfntly.gyp:sfntly' ] } 41 { 'dependencies': [ 'sfntly.gyp:sfntly' ] }
42 ], 42 ],
43 [ 'skia_pdf_generate_pdfa', { 'defines': ['SK_PDF_GENERATE_PDFA'] } ],
43 [ 'skia_android_framework', { 44 [ 'skia_android_framework', {
44 # Add SFTNLY support for PDF (which in turns depends on ICU) 45 # Add SFTNLY support for PDF (which in turns depends on ICU)
45 'include_dirs': [ 46 'include_dirs': [
46 'external/sfntly/cpp/src', 47 'external/sfntly/cpp/src',
47 ], 48 ],
48 'libraries': [ 49 'libraries': [
49 'libsfntly.a', 50 'libsfntly.a',
50 '-licuuc', 51 '-licuuc',
51 '-licui18n', 52 '-licui18n',
52 ], 53 ],
53 } 54 }
54 ], 55 ],
55 ], 56 ],
56 'direct_dependent_settings': { 57 'direct_dependent_settings': {
57 'defines': [ 'SK_SUPPORT_PDF=1', ], 58 'defines': [ 'SK_SUPPORT_PDF=1', ],
58 'include_dirs': [ 59 'include_dirs': [
59 '../include/core', # SkDocument.h 60 '../include/core', # SkDocument.h
60 ], 61 ],
61 }, 62 },
62 }, 63 },
63 ], 64 ],
64 } 65 }
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | gyp/pdf.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698