| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'sfntly', | 8 'target_name': 'sfntly', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'msvs_disable_precompiled_header': '1', |
| 10 'sources': [ | 11 'sources': [ |
| 11 'src/sfntly/cmap_table.cc', | 12 'src/sfntly/cmap_table.cc', |
| 12 'src/sfntly/cmap_table.h', | 13 'src/sfntly/cmap_table.h', |
| 13 'src/sfntly/data/byte_array.cc', | 14 'src/sfntly/data/byte_array.cc', |
| 14 'src/sfntly/data/byte_array.h', | 15 'src/sfntly/data/byte_array.h', |
| 15 'src/sfntly/data/font_data.cc', | 16 'src/sfntly/data/font_data.cc', |
| 16 'src/sfntly/data/font_data.h', | 17 'src/sfntly/data/font_data.h', |
| 17 'src/sfntly/data/font_input_stream.cc', | 18 'src/sfntly/data/font_input_stream.cc', |
| 18 'src/sfntly/data/font_input_stream.h', | 19 'src/sfntly/data/font_input_stream.h', |
| 19 'src/sfntly/data/font_output_stream.cc', | 20 'src/sfntly/data/font_output_stream.cc', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 # This macro must be define to suppress the use of exception | 81 # This macro must be define to suppress the use of exception |
| 81 'defines': [ | 82 'defines': [ |
| 82 'SFNTLY_NO_EXCEPTION', | 83 'SFNTLY_NO_EXCEPTION', |
| 83 ], | 84 ], |
| 84 'dependencies' : [ | 85 'dependencies' : [ |
| 85 '../icu/icu.gyp:icuuc', | 86 '../icu/icu.gyp:icuuc', |
| 86 ], | 87 ], |
| 87 }, | 88 }, |
| 88 ] | 89 ] |
| 89 } | 90 } |
| OLD | NEW |