| 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 # Target for building freetype. | 5 # Target for building freetype. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'freetype', | 9 'target_name': 'freetype', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 [ 'skia_android_framework', | 56 [ 'skia_android_framework', |
| 57 { | 57 { |
| 58 'direct_dependent_settings': { | 58 'direct_dependent_settings': { |
| 59 'defines': [ | 59 'defines': [ |
| 60 # Android provides at least FreeType 2.4.0 | 60 # Android provides at least FreeType 2.4.0 |
| 61 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400', | 61 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400', |
| 62 'SK_CAN_USE_DLOPEN=0', | 62 'SK_CAN_USE_DLOPEN=0', |
| 63 ], | 63 ], |
| 64 }, | 64 }, |
| 65 'include_dirs': [ | 65 'include_dirs': [ |
| 66 'external/expat/lib', | |
| 67 'external/freetype/include', | 66 'external/freetype/include', |
| 68 ], | 67 ], |
| 69 'libraries': [ | 68 'libraries': [ |
| 70 '-lft2', | 69 '-lft2', |
| 71 ], | 70 ], |
| 72 } | 71 } |
| 73 ], | 72 ], |
| 74 ], | 73 ], |
| 75 } | 74 } |
| 76 ], | 75 ], |
| (...skipping 27 matching lines...) Expand all Loading... |
| 104 }], | 103 }], |
| 105 [ 'skia_clang_build == 1', { | 104 [ 'skia_clang_build == 1', { |
| 106 'cflags':[ | 105 'cflags':[ |
| 107 '-w', | 106 '-w', |
| 108 ], | 107 ], |
| 109 }], | 108 }], |
| 110 ], | 109 ], |
| 111 }, | 110 }, |
| 112 ], | 111 ], |
| 113 } | 112 } |
| OLD | NEW |