OLD | NEW |
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 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 Import('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 if env.WantSystemLib('lzma_sdk'): | 9 if env.WantSystemLib('lzma_sdk'): |
10 Return() | 10 Return() |
(...skipping 29 matching lines...) Expand all Loading... |
40 'Archive/7z/7zHeader.c', | 40 'Archive/7z/7zHeader.c', |
41 'Archive/7z/7zIn.c', | 41 'Archive/7z/7zIn.c', |
42 'Archive/7z/7zItem.c', | 42 'Archive/7z/7zItem.c', |
43 'Archive/7z/7zMethodID.c', | 43 'Archive/7z/7zMethodID.c', |
44 'Compress/Branch/BranchX86.c', | 44 'Compress/Branch/BranchX86.c', |
45 'Compress/Branch/BranchX86_2.c', | 45 'Compress/Branch/BranchX86_2.c', |
46 'Compress/Lzma/LzmaDecode.c', | 46 'Compress/Lzma/LzmaDecode.c', |
47 ] | 47 ] |
48 | 48 |
49 env.ChromeStaticLibrary('lzma_sdk', input_files) | 49 env.ChromeStaticLibrary('lzma_sdk', input_files) |
| 50 |
| 51 env.ChromeMSVSProject('$LZMA_SDK_DIR/7z_C.vcproj', |
| 52 name='lzma_sdk', |
| 53 guid='{B84553C8-5676-427B-B3E4-23DDDC4DBC7B}') |
OLD | NEW |