| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 '$WEBCORE_DIR/rendering', | 167 '$WEBCORE_DIR/rendering', |
| 168 '$WEBCORE_DIR/rendering/style', | 168 '$WEBCORE_DIR/rendering/style', |
| 169 ], | 169 ], |
| 170 | 170 |
| 171 CPPDEFINES = [ | 171 CPPDEFINES = [ |
| 172 'U_STATIC_IMPLEMENTATION', | 172 'U_STATIC_IMPLEMENTATION', |
| 173 '_SCL_SECURE_NO_DEPRECATE', | 173 '_SCL_SECURE_NO_DEPRECATE', |
| 174 '_SCL_SECURE_NO_WARNINGS', | 174 '_SCL_SECURE_NO_WARNINGS', |
| 175 ['ENABLE_DATABASE', '0'], | 175 ['ENABLE_DATABASE', '0'], |
| 176 ['ENABLE_DASHBOARD_SUPPORT', '0'], | 176 ['ENABLE_DASHBOARD_SUPPORT', '0'], |
| 177 ['ENABLE_JAVASCRIPT_DEBUGGER', '0'], |
| 177 ['ENABLE_JSC_MULTIPLE_THREADS', '0'], | 178 ['ENABLE_JSC_MULTIPLE_THREADS', '0'], |
| 178 ['ENABLE_ICONDATABASE', '0'], | 179 ['ENABLE_ICONDATABASE', '0'], |
| 179 ['ENABLE_XSLT', '1'], | 180 ['ENABLE_XSLT', '1'], |
| 180 ['ENABLE_XPATH', '1'], | 181 ['ENABLE_XPATH', '1'], |
| 181 ['ENABLE_SVG', '1'], | 182 ['ENABLE_SVG', '1'], |
| 182 ['ENABLE_SVG_ANIMATION', '1'], | 183 ['ENABLE_SVG_ANIMATION', '1'], |
| 183 ['ENABLE_SVG_AS_IMAGE', '1'], | 184 ['ENABLE_SVG_AS_IMAGE', '1'], |
| 184 ['ENABLE_SVG_USE', '1'], | 185 ['ENABLE_SVG_USE', '1'], |
| 185 ['ENABLE_SVG_FOREIGN_OBJECT', '1'], | 186 ['ENABLE_SVG_FOREIGN_OBJECT', '1'], |
| 186 ['ENABLE_SVG_FONTS', '1'], | 187 ['ENABLE_SVG_FONTS', '1'], |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 #env.Alias('webkit', ['.', '$OBJ_ROOT/icudt38.dll']) | 261 #env.Alias('webkit', ['.', '$OBJ_ROOT/icudt38.dll']) |
| 261 if env['PLATFORM'] == 'win32': | 262 if env['PLATFORM'] == 'win32': |
| 262 env.Alias('webkit', ['$OBJ_ROOT/icudt38.dll']) | 263 env.Alias('webkit', ['$OBJ_ROOT/icudt38.dll']) |
| 263 | 264 |
| 264 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', | 265 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', |
| 265 ['$WEBCORE_DIR/Configurations/Version.xcconfig', | 266 ['$WEBCORE_DIR/Configurations/Version.xcconfig', |
| 266 '$CHROME_SRC_DIR/webkit/build/webkit_version.py'], | 267 '$CHROME_SRC_DIR/webkit/build/webkit_version.py'], |
| 267 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") | 268 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") |
| 268 env.AlwaysBuild(version) | 269 env.AlwaysBuild(version) |
| 269 | 270 |
| OLD | NEW |