| OLD | NEW |
| 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': 'pdf', | 9 'target_name': 'pdf', |
| 10 'product_name': 'skia_pdf', | 10 'product_name': 'skia_pdf', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'external/sfntly/cpp/src', | 38 'external/sfntly/cpp/src', |
| 39 ], | 39 ], |
| 40 'libraries': [ | 40 'libraries': [ |
| 41 'libsfntly.a', | 41 'libsfntly.a', |
| 42 '-licuuc', | 42 '-licuuc', |
| 43 '-licui18n', | 43 '-licui18n', |
| 44 ], | 44 ], |
| 45 } | 45 } |
| 46 ], | 46 ], |
| 47 ], | 47 ], |
| 48 # This section makes all targets that depend on this target | |
| 49 # #define SK_SUPPORT_PDF and have access to the pdf header files. | |
| 50 'direct_dependent_settings': { | 48 'direct_dependent_settings': { |
| 51 'defines': [ | |
| 52 'SK_SUPPORT_PDF', | |
| 53 ], | |
| 54 'include_dirs': [ | 49 'include_dirs': [ |
| 55 '../include/core', # SkDocument.h | 50 '../include/core', # SkDocument.h |
| 56 ], | 51 ], |
| 57 }, | 52 }, |
| 58 }, | 53 }, |
| 59 ], | 54 ], |
| 60 } | 55 } |
| OLD | NEW |