| 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.Prepend( | 9 env.Prepend( |
| 10 CPPPATH = [ | 10 CPPPATH = [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 'DelayImp.lib', | 34 'DelayImp.lib', |
| 35 ], | 35 ], |
| 36 ) | 36 ) |
| 37 | 37 |
| 38 input_files = [ | 38 input_files = [ |
| 39 'ipc_security_tests.cc', | 39 'ipc_security_tests.cc', |
| 40 'security_tests.cc', | 40 'security_tests.cc', |
| 41 '$SANDBOX_DIR/tests/validation_tests/commands${OBJSUFFIX}', | 41 '$SANDBOX_DIR/tests/validation_tests/commands${OBJSUFFIX}', |
| 42 ] | 42 ] |
| 43 | 43 |
| 44 env.ChromeSharedLibrary('security_tests', input_files) | 44 # TODO(port): |
| 45 if env.Bit('windows'): |
| 46 env.ChromeSharedLibrary('security_tests', input_files) |
| 47 |
| 48 env.ChromeMSVSProject('$CHROME_DIR/test/security_tests/security_tests.vcproj', |
| 49 guid='{E750512D-FC7C-4C98-BF04-0A0DAF882055}') |
| OLD | NEW |