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.SConscript([ | 9 env.SConscript([ |
10 '$BASE_DIR/using_base.scons', | 10 '$BASE_DIR/using_base.scons', |
| 11 '$DMG_FP_DIR/using_dmg_fp.scons', |
11 '$GTEST_DIR/../using_gtest.scons', | 12 '$GTEST_DIR/../using_gtest.scons', |
12 '$SANDBOX_DIR/using_sandbox.scons', | 13 '$SANDBOX_DIR/using_sandbox.scons', |
13 ], {'env':env}) | 14 ], {'env':env}) |
14 | 15 |
15 env.Prepend( | 16 env.Prepend( |
16 CPPPATH = [ | 17 CPPPATH = [ |
17 '$CHROME_SRC_DIR', | 18 '$CHROME_SRC_DIR', |
18 ], | 19 ], |
19 CPPDEFINES = [ | 20 CPPDEFINES = [ |
20 'CHROMIUM_BUILD', | 21 'CHROMIUM_BUILD', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 obj, | 65 obj, |
65 | 66 |
66 'suite.cc', | 67 'suite.cc', |
67 'commands.cc', | 68 'commands.cc', |
68 | 69 |
69 '../common/controller$OBJSUFFIX', | 70 '../common/controller$OBJSUFFIX', |
70 ] | 71 ] |
71 | 72 |
72 env.ChromeTestProgram('sbox_validation_tests', input_files, | 73 env.ChromeTestProgram('sbox_validation_tests', input_files, |
73 COMPONENT_PLATFORM_SETUP=None) | 74 COMPONENT_PLATFORM_SETUP=None) |
OLD | NEW |