|
OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'library%': 'static_library', | |
8 }, | |
9 'targets': [ | |
10 { | |
11 'target_name': 'ots_lzma_sdk', | |
12 'type': '<(library)', | |
13 'defines': [ | |
14 '_7ZIP_ST', # Disable multi-thread support. | |
15 '_LZMA_PROB32', # This could increase the speed on 32bit platform. | |
16 ], | |
17 'sources': [ | |
18 'Alloc.cc', | |
19 'Alloc.h', | |
20 'LzFind.cc', | |
21 'LzFind.h', | |
22 'LzHash.h', | |
23 'LzmaEnc.cc', | |
24 'LzmaEnc.h', | |
25 'LzmaDec.cc', | |
26 'LzmaDec.h', | |
27 'LzmaLib.cc', | |
28 'LzmaLib.h', | |
29 'Types.h', | |
30 ], | |
31 'include_dirs': [ | |
32 '.', | |
33 ], | |
34 'direct_dependent_settings': { | |
35 'include_dirs': [ | |
36 '..', | |
37 ], | |
38 }, | |
39 }, | |
40 ], | |
41 } | |
OLD | NEW |