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

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

Issue 10025017: [OTS] Add lzma_sdk (Closed) Base URL: http://ots.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 8 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 {
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 }
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