OLD | NEW |
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 19 matching lines...) Expand all Loading... |
30 '/FIXED:No', | 30 '/FIXED:No', |
31 | 31 |
32 '/safeseh', | 32 '/safeseh', |
33 '/dynamicbase', | 33 '/dynamicbase', |
34 '/ignore:4199', | 34 '/ignore:4199', |
35 '/nxcompat', | 35 '/nxcompat', |
36 ], | 36 ], |
37 ) | 37 ) |
38 | 38 |
39 input_files = [ | 39 input_files = [ |
40 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', | |
41 'flush_cache.cc', | 40 'flush_cache.cc', |
42 ] | 41 ] |
43 | 42 |
44 env.ChromeTestProgram('flush_cache', input_files) | 43 env.ChromeTestProgram('flush_cache', input_files) |
OLD | NEW |