| Index: third_party/sfntly/sfntly.gyp
|
| diff --git a/third_party/sfntly/sfntly.gyp b/third_party/sfntly/sfntly.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..24f256ea61b59ade3aa20b95a3e717c1bbf143f6
|
| --- /dev/null
|
| +++ b/third_party/sfntly/sfntly.gyp
|
| @@ -0,0 +1,89 @@
|
| +# Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +{
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'sfntly',
|
| + 'type': 'static_library',
|
| + 'sources': [
|
| + 'src/sfntly/cmap_table.cc',
|
| + 'src/sfntly/cmap_table.h',
|
| + 'src/sfntly/data/byte_array.cc',
|
| + 'src/sfntly/data/byte_array.h',
|
| + 'src/sfntly/data/font_data.cc',
|
| + 'src/sfntly/data/font_data.h',
|
| + 'src/sfntly/data/font_input_stream.cc',
|
| + 'src/sfntly/data/font_input_stream.h',
|
| + 'src/sfntly/data/font_output_stream.cc',
|
| + 'src/sfntly/data/font_output_stream.h',
|
| + 'src/sfntly/data/growable_memory_byte_array.cc',
|
| + 'src/sfntly/data/growable_memory_byte_array.h',
|
| + 'src/sfntly/data/memory_byte_array.cc',
|
| + 'src/sfntly/data/memory_byte_array.h',
|
| + 'src/sfntly/data/readable_font_data.cc',
|
| + 'src/sfntly/data/readable_font_data.h',
|
| + 'src/sfntly/data/writable_font_data.cc',
|
| + 'src/sfntly/data/writable_font_data.h',
|
| + 'src/sfntly/font.cc',
|
| + 'src/sfntly/font.h',
|
| + 'src/sfntly/font_data_table.cc',
|
| + 'src/sfntly/font_data_table.h',
|
| + 'src/sfntly/font_data_table_builder_container.h',
|
| + 'src/sfntly/font_factory.cc',
|
| + 'src/sfntly/font_factory.h',
|
| + 'src/sfntly/font_header_table.cc',
|
| + 'src/sfntly/font_header_table.h',
|
| + 'src/sfntly/glyph_table.cc',
|
| + 'src/sfntly/glyph_table.h',
|
| + 'src/sfntly/horizontal_header_table.cc',
|
| + 'src/sfntly/horizontal_header_table.h',
|
| + 'src/sfntly/horizontal_metrics_table.cc',
|
| + 'src/sfntly/horizontal_metrics_table.h',
|
| + 'src/sfntly/loca_table.cc',
|
| + 'src/sfntly/loca_table.h',
|
| + 'src/sfntly/math/fixed1616.h',
|
| + 'src/sfntly/math/font_math.h',
|
| + 'src/sfntly/maximum_profile_table.cc',
|
| + 'src/sfntly/maximum_profile_table.h',
|
| + 'src/sfntly/name_table.cc',
|
| + 'src/sfntly/name_table.h',
|
| + 'src/sfntly/os2_table.cc',
|
| + 'src/sfntly/os2_table.h',
|
| + 'src/sfntly/port/atomic.h',
|
| + 'src/sfntly/port/config.h',
|
| + 'src/sfntly/port/endian.h',
|
| + 'src/sfntly/port/exception_type.h',
|
| + 'src/sfntly/port/file_input_stream.cc',
|
| + 'src/sfntly/port/file_input_stream.h',
|
| + 'src/sfntly/port/input_stream.h',
|
| + 'src/sfntly/port/memory_output_stream.cc',
|
| + 'src/sfntly/port/memory_output_stream.h',
|
| + 'src/sfntly/port/output_stream.h',
|
| + 'src/sfntly/port/refcount.h',
|
| + 'src/sfntly/port/type.h',
|
| + 'src/sfntly/subtable.cc',
|
| + 'src/sfntly/subtable.h',
|
| + 'src/sfntly/table.cc',
|
| + 'src/sfntly/table.h',
|
| + 'src/sfntly/tag.cc',
|
| + 'src/sfntly/tag.h',
|
| + 'src/subsetter/font_subsetter.cc',
|
| + 'src/subsetter/font_subsetter.h',
|
| + 'src/subsetter/subsetter_impl.cc',
|
| + 'src/subsetter/subsetter_impl.h',
|
| + ],
|
| + 'include_dirs': [
|
| + 'src', '../..',
|
| + ],
|
| + # This macro must be define to suppress the use of exception
|
| + 'defines': [
|
| + 'SFNTLY_NO_EXCEPTION',
|
| + ],
|
| + 'dependencies' : [
|
| + '../icu/icu.gyp:icuuc',
|
| + ],
|
| + },
|
| + ]
|
| +}
|
|
|