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

Side by Side Diff: chrome/test/memory_test/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/interactive_ui/SConscript ('k') | chrome/test/mini_installer_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 ], 14 ],
15 CPPPATH = [ 15 CPPPATH = [
16 '$GTEST_DIR/include', 16 '$GTEST_DIR/include',
17 '$GTEST_DIR', 17 '$GTEST_DIR',
18 '$SKIA_DIR/include', 18 '$SKIA_DIR/include',
19 '$SKIA_DIR/include/corecg', 19 '$SKIA_DIR/include/corecg',
20 '$SKIA_DIR/platform', 20 '$SKIA_DIR/platform',
21 '#/..', 21 '$CHROME_SRC_DIR',
22 ], 22 ],
23 LIBS = [ 23 LIBS = [
24 'automation', 24 'automation',
25 'base', 25 'base',
26 'base_gfx', 26 'base_gfx',
27 'browser', 27 'browser',
28 'browser_views', 28 'browser_views',
29 'common', 29 'common',
30 'googleurl', 30 'googleurl',
31 'gtest', 31 'gtest',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', 63 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX',
64 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', 64 '$CHROME_DIR/test/test_file_util$OBJSUFFIX',
65 'memory_test.cc', 65 'memory_test.cc',
66 ] 66 ]
67 67
68 exe = env_test.ChromeTestProgram('memory_test', input_files) 68 exe = env_test.ChromeTestProgram('memory_test', input_files)
69 i = env_test.Install('$TARGET_ROOT', exe) 69 i = env_test.Install('$TARGET_ROOT', exe)
70 70
71 env_test.Alias('chrome', i) 71 env_test.Alias('chrome', i)
72 72
OLDNEW
« no previous file with comments | « chrome/test/interactive_ui/SConscript ('k') | chrome/test/mini_installer_test/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698