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

Side by Side Diff: xz/src/liblzma/lzma/Makefile.inc

Issue 2869016: Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 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 | « xz/src/liblzma/lz/lz_encoder_mf.c ('k') | xz/src/liblzma/lzma/fastpos.h » ('j') | 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 ##
2 ## Author: Lasse Collin
3 ##
4 ## This file has been put into the public domain.
5 ## You can do whatever you want with this file.
6 ##
7
8 EXTRA_DIST += lzma/fastpos_tablegen.c
9
10 liblzma_la_SOURCES += lzma/lzma_common.h
11
12 if COND_ENCODER_LZMA1
13 liblzma_la_SOURCES += \
14 lzma/fastpos.h \
15 lzma/lzma_encoder.h \
16 lzma/lzma_encoder.c \
17 lzma/lzma_encoder_presets.c \
18 lzma/lzma_encoder_private.h \
19 lzma/lzma_encoder_optimum_fast.c \
20 lzma/lzma_encoder_optimum_normal.c
21
22 if !COND_SMALL
23 liblzma_la_SOURCES += lzma/fastpos_table.c
24 endif
25 endif
26
27 if COND_DECODER_LZMA1
28 liblzma_la_SOURCES += \
29 lzma/lzma_decoder.c \
30 lzma/lzma_decoder.h
31 endif
32
33 if COND_ENCODER_LZMA2
34 liblzma_la_SOURCES += \
35 lzma/lzma2_encoder.c \
36 lzma/lzma2_encoder.h
37 endif
38
39 if COND_DECODER_LZMA2
40 liblzma_la_SOURCES += \
41 lzma/lzma2_decoder.c \
42 lzma/lzma2_decoder.h
43 endif
OLDNEW
« no previous file with comments | « xz/src/liblzma/lz/lz_encoder_mf.c ('k') | xz/src/liblzma/lzma/fastpos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698