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

Side by Side Diff: chrome/SConscript.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.automated_ui_tests ('k') | chrome/app/resources/SConscript » ('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 '$CHROME_DIR/app/resources', 11 '$CHROME_DIR/app/resources',
12 '$ICU38_DIR/public/common', 12 '$ICU38_DIR/public/common',
13 '$ICU38_DIR/public/i18n', 13 '$ICU38_DIR/public/i18n',
14 '$SKIA_DIR/include', 14 '$SKIA_DIR/include',
15 '$SKIA_DIR/include/corecg', 15 '$SKIA_DIR/include/corecg',
16 '$SKIA_DIR/platform', 16 '$SKIA_DIR/platform',
17 '#/..', 17 '$CHROME_SRC_DIR',
18 '$GTEST_DIR/include', 18 '$GTEST_DIR/include',
19 'third_party/wtl/include', 19 'third_party/wtl/include',
20 '$LIBXSLT_DIR', 20 '$LIBXSLT_DIR',
21 '$LIBXML_DIR/include', 21 '$LIBXML_DIR/include',
22 '$LIBXML_DIR/DerivedSources/include', 22 '$LIBXML_DIR/DerivedSources/include',
23 'tools/build/win', 23 'tools/build/win',
24 ], 24 ],
25 CPPDEFINES = [ 25 CPPDEFINES = [
26 'LIBXSLT_STATIC', 26 'LIBXSLT_STATIC',
27 'LIBXML_STATIC', 27 'LIBXML_STATIC',
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'test/ui/history_uitest.cc', 132 'test/ui/history_uitest.cc',
133 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', 133 '$CHROME_DIR/test/test_file_util$OBJSUFFIX',
134 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', 134 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX',
135 ] 135 ]
136 136
137 ui_tests = env_test.ChromeTestProgram('ui_tests', ui_test_files + libs) 137 ui_tests = env_test.ChromeTestProgram('ui_tests', ui_test_files + libs)
138 138
139 i = env_test.Install('$TARGET_ROOT', ui_tests) 139 i = env_test.Install('$TARGET_ROOT', ui_tests)
140 Alias('chrome', i) 140 Alias('chrome', i)
141 141
OLDNEW
« no previous file with comments | « chrome/SConscript.automated_ui_tests ('k') | chrome/app/resources/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698