| 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', 'env_res') | 5 Import('env', 'env_res') |
| 6 | 6 |
| 7 env = env.Clone() | 7 env = env.Clone() |
| 8 env_res = env_res.Clone() | 8 env_res = env_res.Clone() |
| 9 | 9 |
| 10 if env['PLATFORM'] == 'win32': | 10 if env['PLATFORM'] == 'win32': |
| 11 env_res.Append( | 11 env_res.Append( |
| 12 CPPPATH = [ | 12 CPPPATH = [ |
| 13 '.', | 13 '.', |
| 14 '#/..', | 14 '$CHROME_SRC_DIR', |
| 15 '$NET_DIR', | 15 '$NET_DIR', |
| 16 ], | 16 ], |
| 17 RCFLAGS = [ | 17 RCFLAGS = [ |
| 18 ['/l', '0x409'], | 18 ['/l', '0x409'], |
| 19 ], | 19 ], |
| 20 ) | 20 ) |
| 21 | 21 |
| 22 env.Append( | 22 env.Append( |
| 23 CPPPATH = [ | 23 CPPPATH = [ |
| 24 '$BREAKPAD_DIR/src', | 24 '$BREAKPAD_DIR/src', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp
', | 201 '$WEBKIT_DIR/port/platform/image-decoders/xbm/XBMImageDecoder_unittest.cpp
', |
| 202 | 202 |
| 203 '$V8_DIR/snapshot-empty$OBJSUFFIX', | 203 '$V8_DIR/snapshot-empty$OBJSUFFIX', |
| 204 ]) | 204 ]) |
| 205 | 205 |
| 206 test_shell_tests = env.ChromeTestProgram('test_shell_tests', | 206 test_shell_tests = env.ChromeTestProgram('test_shell_tests', |
| 207 resources + test_files) | 207 resources + test_files) |
| 208 i = env.Install('$TARGET_ROOT', test_shell_tests) | 208 i = env.Install('$TARGET_ROOT', test_shell_tests) |
| 209 env.Alias('webkit', i) | 209 env.Alias('webkit', i) |
| 210 | 210 |
| OLD | NEW |