| 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 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'tab_proxy.cc', | 35 'tab_proxy.cc', |
| 36 'tab_proxy.h', | 36 'tab_proxy.h', |
| 37 'window_proxy.cc', | 37 'window_proxy.cc', |
| 38 'window_proxy.h', | 38 'window_proxy.h', |
| 39 ]) | 39 ]) |
| 40 | 40 |
| 41 if not env.Bit('windows'): | 41 if not env.Bit('windows'): |
| 42 # TODO(port): port. | 42 # TODO(port): port. |
| 43 input_files.Remove( | 43 input_files.Remove( |
| 44 'autocomplete_edit_proxy.cc', | 44 'autocomplete_edit_proxy.cc', |
| 45 'browser_proxy.cc', | |
| 46 'constrained_window_proxy.cc', | 45 'constrained_window_proxy.cc', |
| 47 'tab_proxy.cc', | 46 'tab_proxy.cc', |
| 48 'window_proxy.cc', | 47 'window_proxy.cc', |
| 49 ) | 48 ) |
| 50 | 49 |
| 51 env.ChromeLibrary('automation', input_files) | 50 env.ChromeLibrary('automation', input_files) |
| 52 | 51 |
| 53 p = env.ChromeMSVSProject('automation.vcproj', | 52 p = env.ChromeMSVSProject('automation.vcproj', |
| 54 dest=('$CHROME_SRC_DIR/chrome/' | 53 dest=('$CHROME_SRC_DIR/chrome/' |
| 55 + 'test/automation/automation.vcproj'), | 54 + 'test/automation/automation.vcproj'), |
| (...skipping 27 matching lines...) Expand all Loading... |
| 83 InheritedPropertySheets=[ | 82 InheritedPropertySheets=[ |
| 84 '$(SolutionDir)../build/debug.vsprops', | 83 '$(SolutionDir)../build/debug.vsprops', |
| 85 './automation.vsprops', | 84 './automation.vsprops', |
| 86 ]) | 85 ]) |
| 87 | 86 |
| 88 p.AddConfig('Release|Win32', | 87 p.AddConfig('Release|Win32', |
| 89 InheritedPropertySheets=[ | 88 InheritedPropertySheets=[ |
| 90 '$(SolutionDir)../build/release.vsprops', | 89 '$(SolutionDir)../build/release.vsprops', |
| 91 './automation.vsprops', | 90 './automation.vsprops', |
| 92 ]) | 91 ]) |
| OLD | NEW |