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

Side by Side Diff: chrome/test/memory_test/memory_test.scons

Issue 15051: Convert from using env['PLATFORM'] directly to using the more flexible... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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
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') 5 Import('env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 8
9 env.ApplySConscript([ 9 env.ApplySConscript([
10 '$BASE_DIR/using_base.scons', 10 '$BASE_DIR/using_base.scons',
(...skipping 17 matching lines...) Expand all
28 '$CHROME_SRC_DIR', 28 '$CHROME_SRC_DIR',
29 ], 29 ],
30 LIBS = [ 30 LIBS = [
31 'automation', 31 'automation',
32 'browser', 32 'browser',
33 'browser_views', 33 'browser_views',
34 'common', 34 'common',
35 ], 35 ],
36 ) 36 )
37 37
38 if env['PLATFORM'] == 'win32': 38 if env.Bit('windows'):
39 env.Prepend( 39 env.Prepend(
40 LINKFLAGS = [ 40 LINKFLAGS = [
41 '/INCREMENTAL', 41 '/INCREMENTAL',
42 '/DEBUG', 42 '/DEBUG',
43 43
44 '/DELAYLOAD:"dwmapi.dll"', 44 '/DELAYLOAD:"dwmapi.dll"',
45 '/DELAYLOAD:"uxtheme.dll"', 45 '/DELAYLOAD:"uxtheme.dll"',
46 46
47 '/MACHINE:X86', 47 '/MACHINE:X86',
48 '/FIXED:No', 48 '/FIXED:No',
49 49
50 '/safeseh', 50 '/safeseh',
51 '/dynamicbase', 51 '/dynamicbase',
52 '/ignore:4199', 52 '/ignore:4199',
53 '/nxcompat', 53 '/nxcompat',
54 ], 54 ],
55 ) 55 )
56 56
57 input_files = [ 57 input_files = [
58 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', 58 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX',
59 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', 59 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX',
60 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', 60 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX',
61 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', 61 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX',
62 'memory_test.cc', 62 'memory_test.cc',
63 ] 63 ]
64 64
65 env.ChromeTestProgram('memory_test', input_files) 65 env.ChromeTestProgram('memory_test', input_files)
OLDNEW
« no previous file with comments | « chrome/test/interactive_ui/interactive_ui_tests.scons ('k') | chrome/test/mini_installer_test/mini_installer_test.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698