| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'ft2_dir': 'src', | 7 'ft2_dir': 'src', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 '<(ft2_dir)/src/autofit/autofit.c', | 62 '<(ft2_dir)/src/autofit/autofit.c', |
| 63 '<(ft2_dir)/src/gzip/ftgzip.c', | 63 '<(ft2_dir)/src/gzip/ftgzip.c', |
| 64 '<(ft2_dir)/src/lzw/ftlzw.c', | 64 '<(ft2_dir)/src/lzw/ftlzw.c', |
| 65 ], | 65 ], |
| 66 'defines': [ | 66 'defines': [ |
| 67 'FT_CONFIG_OPTION_SYSTEM_ZLIB', | 67 'FT_CONFIG_OPTION_SYSTEM_ZLIB', |
| 68 'FT2_BUILD_LIBRARY', | 68 'FT2_BUILD_LIBRARY', |
| 69 'FT_CONFIG_CONFIG_H=<ftconfig.h>', # See comments in README.chromium. | 69 'FT_CONFIG_CONFIG_H=<ftconfig.h>', # See comments in README.chromium. |
| 70 'FT_CONFIG_MODULES_H=<ftmodule.h>', # See comments in README.chromium. | 70 'FT_CONFIG_MODULES_H=<ftmodule.h>', # See comments in README.chromium. |
| 71 'FT_CONFIG_OPTIONS_H=<ftoption.h>', # See comments in README.chromium. |
| 71 ], | 72 ], |
| 72 'include_dirs': [ | 73 'include_dirs': [ |
| 73 'include', | 74 'include', |
| 74 '<(ft2_dir)/include', | 75 '<(ft2_dir)/include', |
| 75 ], | 76 ], |
| 76 'direct_dependent_settings': { | 77 'direct_dependent_settings': { |
| 77 'include_dirs': [ | 78 'include_dirs': [ |
| 78 'include', | 79 'include', |
| 79 '<(ft2_dir)/include', | 80 '<(ft2_dir)/include', |
| 80 ], | 81 ], |
| 81 }, | 82 }, |
| 82 'link_settings': { | 83 'link_settings': { |
| 83 'libraries': [ | 84 'libraries': [ |
| 84 '-lz', | 85 '-lz', |
| 85 ], | 86 ], |
| 86 }, | 87 }, |
| 87 }, | 88 }, |
| 88 ], # targets | 89 ], # targets |
| 89 } | 90 } |
| OLD | NEW |