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

Side by Side Diff: chrome/test/tab_switching/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/startup/SConscript ('k') | chrome/third_party/hunspell/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 CPPDEFINES = [ 10 CPPDEFINES = [
11 'UI_TEST', 11 'UI_TEST',
12 'UNIT_TEST', 12 'UNIT_TEST',
13 ], 13 ],
14 CPPPATH = [ 14 CPPPATH = [
15 '$GTEST_DIR/include', 15 '$GTEST_DIR/include',
16 '$GTEST_DIR', 16 '$GTEST_DIR',
17 '$SKIA_DIR/include', 17 '$SKIA_DIR/include',
18 '$SKIA_DIR/include/corecg', 18 '$SKIA_DIR/include/corecg',
19 '$SKIA_DIR/platform', 19 '$SKIA_DIR/platform',
20 '#/..', 20 '$CHROME_SRC_DIR',
21 ], 21 ],
22 LIBS = [ 22 LIBS = [
23 'googleurl', 23 'googleurl',
24 'skia', 24 'skia',
25 'libpng', 25 'libpng',
26 'gtest', 26 'gtest',
27 'base_gfx', 27 'base_gfx',
28 env_test['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed 28 env_test['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed
29 'common', 29 'common',
30 'zlib', 30 'zlib',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'tab_switching_test.cc', 70 'tab_switching_test.cc',
71 ] 71 ]
72 72
73 #"..\..\Debug\obj\tab_switching_test\precompiled_wtl.obj" 73 #"..\..\Debug\obj\tab_switching_test\precompiled_wtl.obj"
74 74
75 exe = env_test.ChromeTestProgram('tab_switching_test', input_files) 75 exe = env_test.ChromeTestProgram('tab_switching_test', input_files)
76 i = env_test.Install('$TARGET_ROOT', exe) 76 i = env_test.Install('$TARGET_ROOT', exe)
77 77
78 env_test.Alias('chrome', i) 78 env_test.Alias('chrome', i)
79 79
OLDNEW
« no previous file with comments | « chrome/test/startup/SConscript ('k') | chrome/third_party/hunspell/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698