OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2009 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 'includes': [ | |
7 '../../build/common.gypi', | |
8 ], | |
9 'targets': [ | |
10 { | |
11 'target_name': 'lzma_sdk', | |
12 'type': '<(library)', | |
bradn
2009/05/05 23:37:29
when did we get a library variable?
sgk
2009/05/06 03:49:37
Couple weeks now; search the chromium-dev list for
| |
13 'defines': [ | |
14 '_LZMA_PROB32', | |
15 '_LZMA_IN_CB', | |
16 ], | |
17 'include_dirs': [ | |
18 '.', | |
19 ], | |
20 # TODO: original configuration had /wd4800, add if | |
21 # necessary and delete if not. | |
22 # '/wd4800', | |
23 'msvs_guid': 'B84553C8-5676-427B-B3E4-23DDDC4DBC7B', | |
24 'sources': [ | |
25 '7zCrc.c', | |
26 '7zCrc.h', | |
27 'Archive/7z/7zAlloc.c', | |
28 'Archive/7z/7zAlloc.h', | |
29 'Archive/7z/7zBuffer.c', | |
30 'Archive/7z/7zBuffer.h', | |
31 'Archive/7z/7zDecode.c', | |
32 'Archive/7z/7zDecode.h', | |
33 'Archive/7z/7zExtract.c', | |
34 'Archive/7z/7zExtract.h', | |
35 'Archive/7z/7zHeader.c', | |
36 'Archive/7z/7zHeader.h', | |
37 'Archive/7z/7zIn.c', | |
38 'Archive/7z/7zIn.h', | |
39 'Archive/7z/7zItem.c', | |
40 'Archive/7z/7zItem.h', | |
41 'Archive/7z/7zMethodID.c', | |
42 'Archive/7z/7zMethodID.h', | |
43 'Compress/Branch/BranchTypes.h', | |
44 'Compress/Branch/BranchX86.c', | |
45 'Compress/Branch/BranchX86.h', | |
46 'Compress/Branch/BranchX86_2.c', | |
47 'Compress/Branch/BranchX86_2.h', | |
48 'Compress/Lzma/LzmaDecode.c', | |
49 'Compress/Lzma/LzmaDecode.h', | |
50 'Compress/Lzma/LzmaTypes.h', | |
51 'Types.h', | |
52 ], | |
53 'direct_dependent_settings': { | |
54 'include_dirs': [ | |
55 '.', | |
56 ], | |
57 }, | |
58 }, | |
59 ], | |
60 } | |
OLD | NEW |