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

Side by Side Diff: chrome/SConscript.automated_ui_tests

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 | « chrome/SConscript ('k') | chrome/SConscript.ui_tests » ('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_test') 5 Import('env_test')
6 6
7 env_test = env_test.Clone() 7 env_test = env_test.Clone()
8 8
9 env_test.Prepend( 9 env_test.Prepend(
10 CPPPATH = [ 10 CPPPATH = [
11 '$ICU38_DIR/public/common', 11 '$ICU38_DIR/public/common',
12 '$ICU38_DIR/public/i18n', 12 '$ICU38_DIR/public/i18n',
13 '$LIBXML_DIR/include', 13 '$LIBXML_DIR/include',
14 '$LIBXML_DIR/DerivedSources/include', 14 '$LIBXML_DIR/DerivedSources/include',
15 '$SKIA_DIR/include', 15 '$SKIA_DIR/include',
16 '$SKIA_DIR/include/corecg', 16 '$SKIA_DIR/include/corecg',
17 '$SKIA_DIR/platform', 17 '$SKIA_DIR/platform',
18 '#/..', 18 '$CHROME_SRC_DIR',
19 '$GTEST_DIR/include', 19 '$GTEST_DIR/include',
20 'third_party/wtl/include', 20 'third_party/wtl/include',
21 'tools/build/win', 21 'tools/build/win',
22 ], 22 ],
23 CPPDEFINES = [ 23 CPPDEFINES = [
24 'LIBXML_STATIC', 24 'LIBXML_STATIC',
25 ], 25 ],
26 LIBS = [ 26 LIBS = [
27 'libxml', 27 'libxml',
28 'googleurl', 28 'googleurl',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', 76 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX',
77 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', 77 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX',
78 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', 78 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX',
79 ] 79 ]
80 80
81 exe = env_test.ChromeTestProgram('automated_ui_tests', test_files + libs) 81 exe = env_test.ChromeTestProgram('automated_ui_tests', test_files + libs)
82 82
83 i = env_test.Install('$TARGET_ROOT', exe) 83 i = env_test.Install('$TARGET_ROOT', exe)
84 Alias('chrome', i) 84 Alias('chrome', i)
85 85
OLDNEW
« no previous file with comments | « chrome/SConscript ('k') | chrome/SConscript.ui_tests » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698