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