| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # TODO(bashi): Rename this directory to font-compression-reference | |
| 5 | 4 |
| 6 { | 5 { |
| 7 'targets': [ | 6 'targets': [ |
| 8 { | 7 { |
| 9 'target_name': 'brotli', | 8 'target_name': 'brotli', |
| 10 'type': 'static_library', | 9 'type': 'static_library', |
| 11 'include_dirs': [ | 10 'include_dirs': [ |
| 12 'src/brotli/dec', | 11 'dec', |
| 13 ], | 12 ], |
| 14 'sources': [ | 13 'sources': [ |
| 15 'src/brotli/dec/bit_reader.c', | 14 'dec/bit_reader.c', |
| 16 'src/brotli/dec/bit_reader.h', | 15 'dec/bit_reader.h', |
| 17 'src/brotli/dec/context.h', | 16 'dec/context.h', |
| 18 'src/brotli/dec/decode.c', | 17 'dec/decode.c', |
| 19 'src/brotli/dec/decode.h', | 18 'dec/decode.h', |
| 20 'src/brotli/dec/dictionary.h', | 19 'dec/dictionary.h', |
| 21 'src/brotli/dec/huffman.c', | 20 'dec/huffman.c', |
| 22 'src/brotli/dec/huffman.h', | 21 'dec/huffman.h', |
| 23 'src/brotli/dec/prefix.h', | 22 'dec/prefix.h', |
| 24 'src/brotli/dec/safe_malloc.c', | 23 'dec/safe_malloc.c', |
| 25 'src/brotli/dec/safe_malloc.h', | 24 'dec/safe_malloc.h', |
| 26 'src/brotli/dec/streams.c', | 25 'dec/streams.c', |
| 27 'src/brotli/dec/streams.h', | 26 'dec/streams.h', |
| 28 'src/brotli/dec/transform.h', | 27 'dec/transform.h', |
| 29 'src/brotli/dec/types.h', | 28 'dec/types.h', |
| 30 ], | |
| 31 }, | |
| 32 { | |
| 33 'target_name': 'woff2_dec', | |
| 34 'type': 'static_library', | |
| 35 'include_dirs': [ | |
| 36 'src/brotli/dec', | |
| 37 'src/woff2', | |
| 38 ], | |
| 39 'dependencies': [ | |
| 40 'brotli', | |
| 41 ], | |
| 42 'sources': [ | |
| 43 'src/woff2/buffer.h', | |
| 44 'src/woff2/round.h', | |
| 45 'src/woff2/store_bytes.h', | |
| 46 'src/woff2/table_tags.cc', | |
| 47 'src/woff2/table_tags.h', | |
| 48 'src/woff2/woff2_common.h', | |
| 49 'src/woff2/woff2_dec.cc', | |
| 50 'src/woff2/woff2_dec.h', | |
| 51 ], | 29 ], |
| 52 }, | 30 }, |
| 53 ], | 31 ], |
| 54 } | 32 } |
| OLD | NEW |