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

Side by Side Diff: sdch/SConscript

Issue 18816: Add missing instruction_map.cc in sdch/SConscript.... (Closed) Base URL: svn://chrome-svn/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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import re 5 import re
6 6
7 Import('env') 7 Import('env')
8 8
9 env = env.Clone(OPEN_VCDIFF_DIR='open-vcdiff') 9 env = env.Clone(OPEN_VCDIFF_DIR='open-vcdiff')
10 10
(...skipping 12 matching lines...) Expand all
23 # in favor of generating the hierarchy to reflect the file system. 23 # in favor of generating the hierarchy to reflect the file system.
24 MSVSFilter('Header Files', [ 24 MSVSFilter('Header Files', [
25 'open-vcdiff/src/blockhash.h', 25 'open-vcdiff/src/blockhash.h',
26 'open-vcdiff/src/checksum.h', 26 'open-vcdiff/src/checksum.h',
27 'open-vcdiff/src/codetable.h', 27 'open-vcdiff/src/codetable.h',
28 'open-vcdiff/src/compile_assert.h', 28 'open-vcdiff/src/compile_assert.h',
29 'open-vcdiff/vsprojects/config.h', 29 'open-vcdiff/vsprojects/config.h',
30 'open-vcdiff/src/decodetable.h', 30 'open-vcdiff/src/decodetable.h',
31 'open-vcdiff/src/encodetable.h', 31 'open-vcdiff/src/encodetable.h',
32 'open-vcdiff/src/headerparser.h', 32 'open-vcdiff/src/headerparser.h',
33 'open-vcdiff/src/instruction_map.h',
33 'open-vcdiff/src/logging.h', 34 'open-vcdiff/src/logging.h',
34 'open-vcdiff/src/google/output_string.h', 35 'open-vcdiff/src/google/output_string.h',
35 'open-vcdiff/src/rolling_hash.h', 36 'open-vcdiff/src/rolling_hash.h',
36 'open-vcdiff/vsprojects/stdint.h', 37 'open-vcdiff/vsprojects/stdint.h',
37 'open-vcdiff/src/testing.h', 38 'open-vcdiff/src/testing.h',
38 'open-vcdiff/src/varint_bigendian.h', 39 'open-vcdiff/src/varint_bigendian.h',
39 'open-vcdiff/src/google/vcdecoder.h', 40 'open-vcdiff/src/google/vcdecoder.h',
40 'open-vcdiff/src/vcdiff_defs.h', 41 'open-vcdiff/src/vcdiff_defs.h',
41 'open-vcdiff/src/vcdiffengine.h', 42 'open-vcdiff/src/vcdiffengine.h',
42 'open-vcdiff/src/zconf.h', 43 'open-vcdiff/src/zconf.h',
43 'open-vcdiff/src/zlib.h', 44 'open-vcdiff/src/zlib.h',
44 ]), 45 ]),
45 MSVSFilter('Source Files', [ 46 MSVSFilter('Source Files', [
46 'open-vcdiff/src/addrcache.cc', 47 'open-vcdiff/src/addrcache.cc',
47 'open-vcdiff/src/adler32.c', 48 'open-vcdiff/src/adler32.c',
48 'open-vcdiff/src/blockhash.cc', 49 'open-vcdiff/src/blockhash.cc',
49 'open-vcdiff/src/codetable.cc', 50 'open-vcdiff/src/codetable.cc',
50 'open-vcdiff/src/decodetable.cc', 51 'open-vcdiff/src/decodetable.cc',
51 'open-vcdiff/src/encodetable.cc', 52 'open-vcdiff/src/encodetable.cc',
52 'open-vcdiff/src/headerparser.cc', 53 'open-vcdiff/src/headerparser.cc',
54 'open-vcdiff/src/instruction_map.cc',
53 'open-vcdiff/src/logging.cc', 55 'open-vcdiff/src/logging.cc',
54 'open-vcdiff/src/varint_bigendian.cc', 56 'open-vcdiff/src/varint_bigendian.cc',
55 'open-vcdiff/src/vcdecoder.cc', 57 'open-vcdiff/src/vcdecoder.cc',
56 'open-vcdiff/src/vcdiffengine.cc', 58 'open-vcdiff/src/vcdiffengine.cc',
57 ]), 59 ]),
58 ]) 60 ])
59 61
60 env.ChromeLibrary('sdch', input_files) 62 env.ChromeLibrary('sdch', input_files)
61 63
62 if env.Bit('posix'): 64 if env.Bit('posix'):
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 InheritedPropertySheets=[ 188 InheritedPropertySheets=[
187 '$(SolutionDir)../build/debug.vsprops', 189 '$(SolutionDir)../build/debug.vsprops',
188 '$(SolutionDir)../sdch/using_sdch.vsprops', 190 '$(SolutionDir)../sdch/using_sdch.vsprops',
189 ]) 191 ])
190 192
191 p.AddConfig('Release|Win32', 193 p.AddConfig('Release|Win32',
192 InheritedPropertySheets=[ 194 InheritedPropertySheets=[
193 '$(SolutionDir)../build/release.vsprops', 195 '$(SolutionDir)../build/release.vsprops',
194 '$(SolutionDir)../sdch/using_sdch.vsprops', 196 '$(SolutionDir)../sdch/using_sdch.vsprops',
195 ]) 197 ])
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698