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

Side by Side Diff: gears/SConscript.zlib

Issue 6576020: Remove Gears from Chrome (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: windows fixes Created 9 years, 9 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 | « gears/SConscript.sqlite ('k') | gears/SConstruct » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2008 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 # Ripped and modded from chrome.
6
7 Import('env')
8
9 env = env.Clone(
10 )
11
12 env.Replace(
13 ZLIB_DIR = '$THIRD_PARTY_DIR/zlib',
14 CPPPATH = [
15 '$ZLIB_DIR',
16 '$VC80_CPPPATH',
17 ],
18 )
19
20 #env.Append(
21 # CPPDEFINES = [
22 # ],
23 #)
24
25 input_files = [
26 # Common Files
27 '$ZLIB_DIR/adler32.c',
28 '$ZLIB_DIR/zutil.c',
29 # Inflate Algorithm (use inflate or infback, but not both)
30 '$ZLIB_DIR/inflate.c',
31 '$ZLIB_DIR/inffast.c',
32 '$ZLIB_DIR/inftrees.c',
33 ]
34
35 # The following files are not yet needed; exclude them to save size.
36 if not env['OFFICIAL_BUILD']:
37 input_files += [
38 # Other Algorithms
39 '$ZLIB_DIR/compress.c',
40 '$ZLIB_DIR/deflate.c',
41 '$ZLIB_DIR/uncompr.c',
42 # Other Common Files
43 '$ZLIB_DIR/crc32.c',
44 '$ZLIB_DIR/gzio.c',
45 '$ZLIB_DIR/trees.c',
46 ]
47
48 env.GearsStaticLibrary('zlib-gears', input_files)
OLDNEW
« no previous file with comments | « gears/SConscript.sqlite ('k') | gears/SConstruct » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698