| 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/gfx/using_base_gfx.scons', | 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'sqlite', | 45 'sqlite', |
| 46 'util', | 46 'util', |
| 47 'v8_snapshot', | 47 'v8_snapshot', |
| 48 'V8Bindings', | 48 'V8Bindings', |
| 49 'views', | 49 'views', |
| 50 'WebCore', | 50 'WebCore', |
| 51 'WTF', | 51 'WTF', |
| 52 ], | 52 ], |
| 53 ) | 53 ) |
| 54 | 54 |
| 55 if env['PLATFORM'] == 'win32': | 55 if env.Bit('windows'): |
| 56 env.Prepend( | 56 env.Prepend( |
| 57 LIBS = [ | 57 LIBS = [ |
| 58 'rpcrt4', | 58 'rpcrt4', |
| 59 'shlwapi', | 59 'shlwapi', |
| 60 'winmm', | 60 'winmm', |
| 61 ], | 61 ], |
| 62 ) | 62 ) |
| 63 | 63 |
| 64 input_files = [ | 64 input_files = [ |
| 65 'generate_profile.cc', | 65 'generate_profile.cc', |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 env.ChromeTestProgram('generate_profile', input_files) | 68 env.ChromeTestProgram('generate_profile', input_files) |
| OLD | NEW |