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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 '$WEBKIT_DIR/port/loader/appcache', | 111 '$WEBKIT_DIR/port/loader/appcache', |
112 '$WEBKIT_DIR/port/loader/archive', | 112 '$WEBKIT_DIR/port/loader/archive', |
113 '$WEBKIT_DIR/port/loader/icon', | 113 '$WEBKIT_DIR/port/loader/icon', |
114 '$WEBKIT_DIR/port/page', | 114 '$WEBKIT_DIR/port/page', |
115 '$WEBKIT_DIR/port/page/animation', | 115 '$WEBKIT_DIR/port/page/animation', |
116 '$WEBKIT_DIR/port/page/chromium', | 116 '$WEBKIT_DIR/port/page/chromium', |
117 '$WEBKIT_DIR/port/platform', | 117 '$WEBKIT_DIR/port/platform', |
118 '$WEBKIT_DIR/port/platform/chromium', | 118 '$WEBKIT_DIR/port/platform/chromium', |
119 '$WEBKIT_DIR/port/platform/graphics', | 119 '$WEBKIT_DIR/port/platform/graphics', |
120 '$WEBKIT_DIR/port/platform/graphics/chromium', | 120 '$WEBKIT_DIR/port/platform/graphics/chromium', |
| 121 '$WEBKIT_DIR/port/platform/graphics/skia', |
121 '$WEBKIT_DIR/port/platform/$WEBKIT_PLATFORM_SUBDIR', | 122 '$WEBKIT_DIR/port/platform/$WEBKIT_PLATFORM_SUBDIR', |
122 '$WEBKIT_DIR/port/svg/graphics', | 123 '$WEBKIT_DIR/port/svg/graphics', |
123 '$WEBKIT_DIR/port/platform/network', | 124 '$WEBKIT_DIR/port/platform/network', |
124 '$WEBKIT_DIR/port/platform/network/chromium', | 125 '$WEBKIT_DIR/port/platform/network/chromium', |
125 '$WEBKIT_DIR/port/platform/network/$WEBKIT_PLATFORM_SUBDIR', | 126 '$WEBKIT_DIR/port/platform/network/$WEBKIT_PLATFORM_SUBDIR', |
126 '$WEBKIT_DIR/port/platform/sql', | 127 '$WEBKIT_DIR/port/platform/sql', |
127 '$WEBKIT_DIR/port/platform/text', | 128 '$WEBKIT_DIR/port/platform/text', |
128 '$WEBKIT_DIR/port/plugins', | 129 '$WEBKIT_DIR/port/plugins', |
129 '$WEBKIT_DIR/port/plugins/chromium', | 130 '$WEBKIT_DIR/port/plugins/chromium', |
130 '$WEBKIT_DIR/port/rendering', | 131 '$WEBKIT_DIR/port/rendering', |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 #env.Alias('webkit', ['.', '$TARGET_ROOT/icudt38.dll']) | 268 #env.Alias('webkit', ['.', '$TARGET_ROOT/icudt38.dll']) |
268 if env['PLATFORM'] == 'win32': | 269 if env['PLATFORM'] == 'win32': |
269 env.Alias('webkit', ['$TARGET_ROOT/icudt38.dll']) | 270 env.Alias('webkit', ['$TARGET_ROOT/icudt38.dll']) |
270 | 271 |
271 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', | 272 version = env.Command('$WEBKIT_DIR/build/WebCore/webkit_version.h', |
272 ['$WEBCORE_DIR/Configurations/Version.xcconfig', | 273 ['$WEBCORE_DIR/Configurations/Version.xcconfig', |
273 '$CHROME_SRC_DIR/webkit/build/webkit_version.py'], | 274 '$CHROME_SRC_DIR/webkit/build/webkit_version.py'], |
274 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") | 275 "$PYTHON ${SOURCES[1]} ${SOURCES[0]} ${TARGET.dir}") |
275 env.AlwaysBuild(version) | 276 env.AlwaysBuild(version) |
276 | 277 |
OLD | NEW |