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

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

Issue 7847: Using $CHROME_SRC_DIR in place of hash/..... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « webkit/default_plugin/SConscript ('k') | no next file » | 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 if env['PLATFORM'] == 'win32': 10 if env['PLATFORM'] == 'win32':
11 env_res.Append( 11 env_res.Append(
12 CPPPATH = [ 12 CPPPATH = [
13 '.', 13 '.',
14 '#/..', 14 '$CHROME_SRC_DIR',
15 '$NET_DIR', 15 '$NET_DIR',
16 ], 16 ],
17 RCFLAGS = [ 17 RCFLAGS = [
18 ['/l', '0x409'], 18 ['/l', '0x409'],
19 ], 19 ],
20 ) 20 )
21 21
22 env.Append( 22 env.Append(
23 CPPPATH = [ 23 CPPPATH = [
24 '$BREAKPAD_DIR/src', 24 '$BREAKPAD_DIR/src',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp ', 201 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp ',
202 202
203 '$V8_DIR/snapshot-empty$OBJSUFFIX', 203 '$V8_DIR/snapshot-empty$OBJSUFFIX',
204 ]) 204 ])
205 205
206 test_shell_tests = env.ChromeTestProgram('test_shell_tests', 206 test_shell_tests = env.ChromeTestProgram('test_shell_tests',
207 resources + test_files) 207 resources + test_files)
208 i = env.Install('$TARGET_ROOT', test_shell_tests) 208 i = env.Install('$TARGET_ROOT', test_shell_tests)
209 env.Alias('webkit', i) 209 env.Alias('webkit', i)
210 210
OLDNEW
« no previous file with comments | « webkit/default_plugin/SConscript ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698