| 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 os | 5 import os |
| 6 | 6 |
| 7 Import(['env']) | 7 Import(['env']) |
| 8 | 8 |
| 9 env = env.Clone() | 9 env = env.Clone() |
| 10 env_res = env.Clone() | 10 env_res = env.Clone() |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 '$WEBKIT_DIR/port/platform/image-decoders/gif', | 74 '$WEBKIT_DIR/port/platform/image-decoders/gif', |
| 75 '$WEBKIT_DIR/port/platform/image-decoders/ico', | 75 '$WEBKIT_DIR/port/platform/image-decoders/ico', |
| 76 '$WEBKIT_DIR/port/platform/image-decoders/jpeg', | 76 '$WEBKIT_DIR/port/platform/image-decoders/jpeg', |
| 77 '$WEBKIT_DIR/port/platform/image-decoders/png', | 77 '$WEBKIT_DIR/port/platform/image-decoders/png', |
| 78 '$WEBKIT_DIR/port/platform/image-decoders/xbm', | 78 '$WEBKIT_DIR/port/platform/image-decoders/xbm', |
| 79 '$ZLIB_DIR', | 79 '$ZLIB_DIR', |
| 80 '$LIBPNG_DIR', | 80 '$LIBPNG_DIR', |
| 81 '$LIBJPEG_DIR', | 81 '$LIBJPEG_DIR', |
| 82 '$LIBXSLT_DIR', | 82 '$LIBXSLT_DIR', |
| 83 '$LIBXML_DIR/include', | 83 '$LIBXML_DIR/include', |
| 84 '$LIBXML_DIR/scons/include', | 84 '$LIBXML_DIR/DerivedSources/include', |
| 85 '$ICU38_DIR/public/common', | 85 '$ICU38_DIR/public/common', |
| 86 '$ICU38_DIR/public/i18n', | 86 '$ICU38_DIR/public/i18n', |
| 87 '$SKIA_DIR/include', | 87 '$SKIA_DIR/include', |
| 88 '$SKIA_DIR/include/corecg', | 88 '$SKIA_DIR/include/corecg', |
| 89 '$SKIA_DIR/platform', | 89 '$SKIA_DIR/platform', |
| 90 '$NPAPI_DIR', | 90 '$NPAPI_DIR', |
| 91 '$V8_DIR/include', | 91 '$V8_DIR/include', |
| 92 '$WEBKIT_DIR/V8Bindings/DerivedSources', | 92 '$WEBKIT_DIR/V8Bindings/DerivedSources', |
| 93 '$WEBKIT_DIR/V8Bindings/SharedSources', | 93 '$WEBKIT_DIR/V8Bindings/SharedSources', |
| 94 '$WEBKIT_DIR/port/bindings/v8', | 94 '$WEBKIT_DIR/port/bindings/v8', |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 #env.Alias('webkit', ['.', '../icudt38.dll']) | 259 #env.Alias('webkit', ['.', '../icudt38.dll']) |
| 260 if env['PLATFORM'] == 'win32': | 260 if env['PLATFORM'] == 'win32': |
| 261 env.Alias('webkit', ['../icudt38.dll']) | 261 env.Alias('webkit', ['../icudt38.dll']) |
| 262 | 262 |
| 263 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', | 263 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', |
| 264 ['$WEBCORE_DIR/Configurations/Version.xcconfig', | 264 ['$WEBCORE_DIR/Configurations/Version.xcconfig', |
| 265 '#/../webkit/build/webkit_version.py'], | 265 '#/../webkit/build/webkit_version.py'], |
| 266 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") | 266 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") |
| 267 env.AlwaysBuild(version) | 267 env.AlwaysBuild(version) |
| 268 | 268 |
| OLD | NEW |