Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: webkit/tools/test_shell/SConscript

Issue 18478: Include webkit strings in test shell data pack. (Closed)
Patch Set: remove header Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webkit/glue/webkit_strings.grd ('k') | webkit/tools/test_shell/test_shell_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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', 'env_res') 5 Import('env', 'env_res')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 env_res = env_res.Clone() 8 env_res = env_res.Clone()
9 9
10 env.SConscript([ 10 env.SConscript([
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 generated = env_grd.GRIT( 204 generated = env_grd.GRIT(
205 '$TARGET_ROOT/grit_derived_sources/fake_test_shell_resources', 205 '$TARGET_ROOT/grit_derived_sources/fake_test_shell_resources',
206 '$CHROME_SRC_DIR/webkit/tools/test_shell/test_shell_resources.grd') 206 '$CHROME_SRC_DIR/webkit/tools/test_shell/test_shell_resources.grd')
207 207
208 env.Append(BUILDERS = { 'Repack' : Builder( 208 env.Append(BUILDERS = { 'Repack' : Builder(
209 action = 'python $CHROME_SRC_DIR/tools/data_pack/repack.py $TARGET $SOURCE S', 209 action = 'python $CHROME_SRC_DIR/tools/data_pack/repack.py $TARGET $SOURCE S',
210 )}) 210 )})
211 test_shell_data = env.Repack( 211 test_shell_data = env.Repack(
212 '$TARGET_ROOT/test_shell.pak', 212 '$TARGET_ROOT/test_shell.pak',
213 ['$TARGET_ROOT/grit_derived_sources/net_resources.pak', 213 ['$TARGET_ROOT/grit_derived_sources/net_resources.pak',
214 '$TARGET_ROOT/grit_derived_sources/test_shell_resources.pak',
214 '$TARGET_ROOT/grit_derived_sources/webkit_resources.pak', 215 '$TARGET_ROOT/grit_derived_sources/webkit_resources.pak',
215 '$TARGET_ROOT/grit_derived_sources/test_shell_resources.pak', 216 '$TARGET_ROOT/grit_derived_sources/webkit_strings_en-US.pak',
216 ] 217 ]
217 ) 218 )
218 env.Depends(test_shell, test_shell_data) 219 env.Depends(test_shell, test_shell_data)
219 220
220 i = env.Install('$DESTINATION_ROOT', test_shell_data) 221 i = env.Install('$DESTINATION_ROOT', test_shell_data)
221 env.Requires(test_shell, i) 222 env.Requires(test_shell, i)
222 env.Alias('webkit', i) 223 env.Alias('webkit', i)
223 224
224 test_files = [ 225 test_files = [
225 'image_decoder_unittest.cc', 226 'image_decoder_unittest.cc',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', 289 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj',
289 '$LIBPNG_DIR/libpng.vcproj', 290 '$LIBPNG_DIR/libpng.vcproj',
290 '$WEBKIT_DIR/build/glue/glue.vcproj', 291 '$WEBKIT_DIR/build/glue/glue.vcproj',
291 '$SKIA_DIR/skia.vcproj', 292 '$SKIA_DIR/skia.vcproj',
292 '$GOOGLEURL_DIR/build/googleurl.vcproj', 293 '$GOOGLEURL_DIR/build/googleurl.vcproj',
293 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', 294 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj',
294 '$SDCH_DIR/sdch.vcproj', 295 '$SDCH_DIR/sdch.vcproj',
295 '$LIBXSLT_DIR/build/libxslt.vcproj', 296 '$LIBXSLT_DIR/build/libxslt.vcproj',
296 ], 297 ],
297 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}') 298 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}')
OLDNEW
« no previous file with comments | « webkit/glue/webkit_strings.grd ('k') | webkit/tools/test_shell/test_shell_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698