| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/platform/sql', | 162 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/platform/sql', |
| 163 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/platform/text', | 163 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/platform/text', |
| 164 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/plugins', | 164 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/plugins', |
| 165 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/rendering', | 165 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/rendering', |
| 166 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/rendering/style', | 166 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/rendering/style', |
| 167 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/storage', | 167 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/storage', |
| 168 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/style', | 168 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/style', |
| 169 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/svg', | 169 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/svg', |
| 170 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/svg/animation', | 170 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/svg/animation', |
| 171 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/svg/graphics', | 171 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/svg/graphics', |
| 172 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/workers', |
| 172 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/xml', | 173 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/xml', |
| 173 | 174 |
| 174 '$CHROME_SRC_DIR', | 175 '$CHROME_SRC_DIR', |
| 175 ]], | 176 ]], |
| 176 ) | 177 ) |
| 177 | 178 |
| 178 env.Append( | 179 env.Append( |
| 179 CPPDEFINES = [ | 180 CPPDEFINES = [ |
| 180 'U_STATIC_IMPLEMENTATION', | 181 'U_STATIC_IMPLEMENTATION', |
| 181 '_SCL_SECURE_NO_DEPRECATE', | 182 '_SCL_SECURE_NO_DEPRECATE', |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 # add their own individual targets to the 'webkit' Alias. | 277 # add their own individual targets to the 'webkit' Alias. |
| 277 #env.Alias('webkit', ['.', '$DESTINATION_ROOT/icudt38.dll']) | 278 #env.Alias('webkit', ['.', '$DESTINATION_ROOT/icudt38.dll']) |
| 278 if env.Bit('windows'): | 279 if env.Bit('windows'): |
| 279 env.Alias('webkit', ['$DESTINATION_ROOT/icudt38.dll']) | 280 env.Alias('webkit', ['$DESTINATION_ROOT/icudt38.dll']) |
| 280 | 281 |
| 281 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', | 282 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', |
| 282 ['$WEBCORE_DIR/Configurations/Version.xcconfig', | 283 ['$WEBCORE_DIR/Configurations/Version.xcconfig', |
| 283 '$CHROME_SRC_DIR/webkit/build/webkit_version.py'], | 284 '$CHROME_SRC_DIR/webkit/build/webkit_version.py'], |
| 284 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") | 285 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") |
| 285 env.AlwaysBuild(version) | 286 env.AlwaysBuild(version) |
| OLD | NEW |