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

Side by Side Diff: sdch/sdch.gyp

Issue 27158: Import .gyp files into the Chromium tree (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 10 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
« no previous file with comments | « net/net.gyp ('k') | skia/skia.gyp » ('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 # 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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'includes': [
10 '../build/common.gypi',
11 ],
12 'targets': [
13 {
14 'target_name': 'sdch',
15 'type': 'static_library',
16 'sources': [
17 'open-vcdiff/src/addrcache.cc',
18 'open-vcdiff/src/adler32.c',
19 'open-vcdiff/src/blockhash.cc',
20 'open-vcdiff/src/blockhash.h',
21 'open-vcdiff/src/checksum.h',
22 'open-vcdiff/src/codetable.cc',
23 'open-vcdiff/src/codetable.h',
24 'open-vcdiff/src/compile_assert.h',
25 'open-vcdiff/src/decodetable.cc',
26 'open-vcdiff/src/decodetable.h',
27 'open-vcdiff/src/encodetable.cc',
28 'open-vcdiff/src/encodetable.h',
29 'open-vcdiff/src/google/output_string.h',
30 'open-vcdiff/src/google/vcdecoder.h',
31 'open-vcdiff/src/headerparser.cc',
32 'open-vcdiff/src/headerparser.h',
33 'open-vcdiff/src/instruction_map.cc',
34 'open-vcdiff/src/instruction_map.h',
35 'open-vcdiff/src/logging.cc',
36 'open-vcdiff/src/logging.h',
37 'open-vcdiff/src/rolling_hash.h',
38 'open-vcdiff/src/testing.h',
39 'open-vcdiff/src/varint_bigendian.cc',
40 'open-vcdiff/src/varint_bigendian.h',
41 'open-vcdiff/src/vcdecoder.cc',
42 'open-vcdiff/src/vcdiff_defs.h',
43 'open-vcdiff/src/vcdiffengine.cc',
44 'open-vcdiff/src/vcdiffengine.h',
45 'open-vcdiff/src/zconf.h',
46 'open-vcdiff/src/zlib.h',
47 'open-vcdiff/vsprojects/config.h',
48 'open-vcdiff/vsprojects/stdint.h',
49 ],
50 'include_dirs': [
51 'open-vcdiff/src',
52 ],
53 'direct_dependent_settings': {
54 'include_dirs': [
55 'open-vcdiff/src',
56 ],
57 },
58 'conditions': [
59 [ 'OS == "mac"', { 'include_dirs': [ 'mac' ] } ],
60 [ 'OS == "win"', { 'include_dirs': [ 'open-vcdiff/vsprojects' ] } ],
61 ],
62 },
63 ],
64 }
OLDNEW
« no previous file with comments | « net/net.gyp ('k') | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698