OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 Import('env') |
| 6 |
| 7 env = env.Clone(OPEN_VCDIFF_DIR='open_vcdiff/depot/opensource/open-vcdiff') |
| 8 |
| 9 env.Prepend( |
| 10 CPPPATH = [ |
| 11 '$OPEN_VCDIFF_DIR/src', |
| 12 '$OPEN_VCDIFF_DIR/vsprojects', |
| 13 ], |
| 14 ) |
| 15 |
| 16 input_files = [ |
| 17 '$OPEN_VCDIFF_DIR/src/addrcache.cc', |
| 18 '$OPEN_VCDIFF_DIR/src/adler32.c', |
| 19 '$OPEN_VCDIFF_DIR/src/blockhash.cc', |
| 20 '$OPEN_VCDIFF_DIR/src/codetable.cc', |
| 21 '$OPEN_VCDIFF_DIR/src/decodetable.cc', |
| 22 '$OPEN_VCDIFF_DIR/src/encodetable.cc', |
| 23 '$OPEN_VCDIFF_DIR/src/headerparser.cc', |
| 24 '$OPEN_VCDIFF_DIR/src/logging.cc', |
| 25 '$OPEN_VCDIFF_DIR/src/varint_bigendian.cc', |
| 26 '$OPEN_VCDIFF_DIR/src/vcdecoder.cc', |
| 27 '$OPEN_VCDIFF_DIR/src/vcdiffengine.cc', |
| 28 ] |
| 29 |
| 30 env.ChromeStaticLibrary('sdch', input_files) |
OLD | NEW |