Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: third_party/lzma_sdk/lzma_sdk.gyp

Issue 10273025: [OTS] Add lzma_sdk for standalone build (Closed) Base URL: http://ots.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/lzma_sdk/Types.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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 # lzma_sdk for standalone build.
6 {
7 'targets': [
8 {
9 'target_name': 'ots_lzma_sdk',
10 'type': 'static_library',
11 'defines': [
12 '_7ZIP_ST', # Disable multi-thread support.
13 '_LZMA_PROB32', # This could increase the speed on 32bit platform.
14 ],
15 'sources': [
16 'Alloc.c',
17 'Alloc.h',
18 'LzFind.c',
19 'LzFind.h',
20 'LzHash.h',
21 'LzmaEnc.c',
22 'LzmaEnc.h',
23 'LzmaDec.c',
24 'LzmaDec.h',
25 'LzmaLib.c',
26 'LzmaLib.h',
27 'Types.h',
28 ],
29 'include_dirs': [
30 '.',
31 ],
32 'direct_dependent_settings': {
33 'include_dirs': [
34 '../..',
35 ],
36 },
37 },
38 ],
39 }
OLDNEW
« no previous file with comments | « third_party/lzma_sdk/Types.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698