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

Side by Side Diff: chrome/test/interactive_ui/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 | « chrome/test/chrome_plugin/SConscript ('k') | chrome/test/memory_test/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 9
10 env_test.Prepend( 10 env_test.Prepend(
11 CPPDEFINES = [ 11 CPPDEFINES = [
12 'UI_TEST', 12 'UI_TEST',
13 'UNIT_TEST', 13 'UNIT_TEST',
14 'LIBXSLT_STATIC', 14 'LIBXSLT_STATIC',
15 'LIBXML_STATIC', 15 'LIBXML_STATIC',
16 ], 16 ],
17 CPPPATH = [ 17 CPPPATH = [
18 '$GTEST_DIR/include', 18 '$GTEST_DIR/include',
19 '$GTEST_DIR', 19 '$GTEST_DIR',
20 '$SKIA_DIR/include', 20 '$SKIA_DIR/include',
21 '$SKIA_DIR/include/corecg', 21 '$SKIA_DIR/include/corecg',
22 '$SKIA_DIR/platform', 22 '$SKIA_DIR/platform',
23 '#/..', 23 '$CHROME_SRC_DIR',
24 '$CHROME_DIR/third_party/wtl/include', 24 '$CHROME_DIR/third_party/wtl/include',
25 '$LIBXSLT_DIR', 25 '$LIBXSLT_DIR',
26 '$LIBXML_DIR/include', 26 '$LIBXML_DIR/include',
27 ], 27 ],
28 LIBS = [ 28 LIBS = [
29 'automation', 29 'automation',
30 'base', 30 'base',
31 'base_gfx', 31 'base_gfx',
32 'browser', 32 'browser',
33 'browser_views', 33 'browser_views',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', 78 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX',
79 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', 79 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX',
80 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', 80 '$CHROME_DIR/test/test_file_util$OBJSUFFIX',
81 'view_event_test_base.cc', 81 'view_event_test_base.cc',
82 ] 82 ]
83 83
84 exe = env_test.ChromeTestProgram('interactive_ui_tests', input_files) 84 exe = env_test.ChromeTestProgram('interactive_ui_tests', input_files)
85 i = env_test.Install('$TARGET_ROOT', exe) 85 i = env_test.Install('$TARGET_ROOT', exe)
86 86
87 env_test.Alias('chrome', i) 87 env_test.Alias('chrome', i)
OLDNEW
« no previous file with comments | « chrome/test/chrome_plugin/SConscript ('k') | chrome/test/memory_test/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698