OLD | NEW |
1 # Copyright (c) 2012 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 | 4 |
5 # lzma_sdk for standalone build. | |
6 { | 5 { |
7 'targets': [ | 6 'targets': [ |
8 { | 7 { |
9 'target_name': 'ots_lzma_sdk', | 8 'target_name': 'brotli', |
10 'type': 'static_library', | 9 'type': 'static_library', |
11 'defines': [ | 10 'include_dirs': [ |
12 '_7ZIP_ST', # Disable multi-thread support. | 11 'src/brotli/dec', |
13 '_LZMA_PROB32', # This could increase the speed on 32bit platform. | |
14 ], | 12 ], |
15 'sources': [ | 13 'sources': [ |
16 'Alloc.c', | 14 'src/brotli/dec/bit_reader.c', |
17 'Alloc.h', | 15 'src/brotli/dec/bit_reader.h', |
18 'LzFind.c', | 16 'src/brotli/dec/context.h', |
19 'LzFind.h', | 17 'src/brotli/dec/decode.c', |
20 'LzHash.h', | 18 'src/brotli/dec/decode.h', |
21 'LzmaEnc.c', | 19 'src/brotli/dec/dictionary.h', |
22 'LzmaEnc.h', | 20 'src/brotli/dec/huffman.c', |
23 'LzmaDec.c', | 21 'src/brotli/dec/huffman.h', |
24 'LzmaDec.h', | 22 'src/brotli/dec/prefix.h', |
25 'LzmaLib.c', | 23 'src/brotli/dec/safe_malloc.c', |
26 'LzmaLib.h', | 24 'src/brotli/dec/safe_malloc.h', |
27 'Types.h', | 25 'src/brotli/dec/streams.c', |
| 26 'src/brotli/dec/streams.h', |
| 27 'src/brotli/dec/transform.h', |
| 28 'src/brotli/dec/types.h', |
28 ], | 29 ], |
29 'include_dirs': [ | |
30 '.', | |
31 ], | |
32 'direct_dependent_settings': { | |
33 'include_dirs': [ | |
34 '../..', | |
35 ], | |
36 }, | |
37 }, | 30 }, |
38 ], | 31 ], |
39 } | 32 } |
OLD | NEW |