OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'lzma_sdk_sources': [ | 7 'lzma_sdk_sources': [ |
8 '7zCrc.c', | 8 '7zCrc.c', |
9 '7zCrc.h', | 9 '7zCrc.h', |
10 'Archive/7z/7zAlloc.c', | 10 'Archive/7z/7zAlloc.c', |
(...skipping 30 matching lines...) Expand all Loading... |
41 'defines': [ | 41 'defines': [ |
42 '_LZMA_PROB32', | 42 '_LZMA_PROB32', |
43 '_LZMA_IN_CB', | 43 '_LZMA_IN_CB', |
44 ], | 44 ], |
45 'include_dirs': [ | 45 'include_dirs': [ |
46 '.', | 46 '.', |
47 ], | 47 ], |
48 # TODO: original configuration had /wd4800, add if | 48 # TODO: original configuration had /wd4800, add if |
49 # necessary and delete if not. | 49 # necessary and delete if not. |
50 # '/wd4800', | 50 # '/wd4800', |
51 'msvs_guid': 'B84553C8-5676-427B-B3E4-23DDDC4DBC7B', | |
52 'sources': ['<@(lzma_sdk_sources)'], | 51 'sources': ['<@(lzma_sdk_sources)'], |
53 'direct_dependent_settings': { | 52 'direct_dependent_settings': { |
54 'defines': [ | 53 'defines': [ |
55 '_LZMA_IN_CB', | 54 '_LZMA_IN_CB', |
56 ], | 55 ], |
57 'include_dirs': [ | 56 'include_dirs': [ |
58 '.', | 57 '.', |
59 ], | 58 ], |
60 }, | 59 }, |
61 }, | 60 }, |
(...skipping 29 matching lines...) Expand all Loading... |
91 ], | 90 ], |
92 }], | 91 }], |
93 ], | 92 ], |
94 } | 93 } |
95 | 94 |
96 # Local Variables: | 95 # Local Variables: |
97 # tab-width:2 | 96 # tab-width:2 |
98 # indent-tabs-mode:nil | 97 # indent-tabs-mode:nil |
99 # End: | 98 # End: |
100 # vim: set expandtab tabstop=2 shiftwidth=2: | 99 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |