| OLD | NEW |
| 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('env') | 5 Import('env') |
| 6 | 6 |
| 7 env = env.Clone(OPEN_VCDIFF_DIR='open_vcdiff/depot/opensource/open-vcdiff') | 7 env = env.Clone(OPEN_VCDIFF_DIR='open_vcdiff/depot/opensource/open-vcdiff') |
| 8 | 8 |
| 9 env.Prepend( | 9 env.Prepend( |
| 10 CPPPATH = [ | 10 CPPPATH = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 '$OPEN_VCDIFF_DIR/src/decodetable.cc', | 21 '$OPEN_VCDIFF_DIR/src/decodetable.cc', |
| 22 '$OPEN_VCDIFF_DIR/src/encodetable.cc', | 22 '$OPEN_VCDIFF_DIR/src/encodetable.cc', |
| 23 '$OPEN_VCDIFF_DIR/src/headerparser.cc', | 23 '$OPEN_VCDIFF_DIR/src/headerparser.cc', |
| 24 '$OPEN_VCDIFF_DIR/src/logging.cc', | 24 '$OPEN_VCDIFF_DIR/src/logging.cc', |
| 25 '$OPEN_VCDIFF_DIR/src/varint_bigendian.cc', | 25 '$OPEN_VCDIFF_DIR/src/varint_bigendian.cc', |
| 26 '$OPEN_VCDIFF_DIR/src/vcdecoder.cc', | 26 '$OPEN_VCDIFF_DIR/src/vcdecoder.cc', |
| 27 '$OPEN_VCDIFF_DIR/src/vcdiffengine.cc', | 27 '$OPEN_VCDIFF_DIR/src/vcdiffengine.cc', |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 env.ChromeStaticLibrary('sdch', input_files) | 30 env.ChromeStaticLibrary('sdch', input_files) |
| OLD | NEW |