| 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 '$BREAKPAD_DIR/using_breakpad.scons', | 10 '$BREAKPAD_DIR/using_breakpad.scons', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'debugger_window.cc', | 53 'debugger_window.cc', |
| 54 'debugger_window.h', | 54 'debugger_window.h', |
| 55 'debugger_wrapper.cc', | 55 'debugger_wrapper.cc', |
| 56 'debugger_wrapper.h', | 56 'debugger_wrapper.h', |
| 57 ]) | 57 ]) |
| 58 | 58 |
| 59 if env.Bit('linux'): | 59 if env.Bit('linux'): |
| 60 # TODO(port): Port these. | 60 # TODO(port): Port these. |
| 61 input_files.Remove( | 61 input_files.Remove( |
| 62 'debugger_contents.cc', | 62 'debugger_contents.cc', |
| 63 'debugger_shell.cc', | |
| 64 'debugger_view.cc', | 63 'debugger_view.cc', |
| 65 'debugger_window.cc', | 64 'debugger_window.cc', |
| 66 ) | 65 ) |
| 67 | 66 |
| 68 if env.Bit('mac'): | 67 if env.Bit('mac'): |
| 69 # TODO(port): Port these. | 68 # TODO(port): Port these. |
| 70 input_files.Remove( | 69 input_files.Remove( |
| 71 'debugger_contents.cc', | 70 'debugger_contents.cc', |
| 72 'debugger_host_impl.cpp', | 71 'debugger_host_impl.cpp', |
| 73 'debugger_node.cc', | 72 'debugger_node.cc', |
| 74 'debugger_shell.cc', | |
| 75 'debugger_view.cc', | 73 'debugger_view.cc', |
| 76 'debugger_window.cc', | 74 'debugger_window.cc', |
| 77 ) | 75 ) |
| 78 | 76 |
| 79 if not env.Bit('mac'): | 77 if not env.Bit('mac'): |
| 80 # TODO(port): Enable for Mac. | 78 # TODO(port): Enable for Mac. |
| 81 env.ChromeLibrary('debugger', input_files) | 79 env.ChromeLibrary('debugger', input_files) |
| 82 | 80 |
| 83 | 81 |
| 84 p = env.ChromeMSVSProject('debugger.vcproj', | 82 p = env.ChromeMSVSProject('debugger.vcproj', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 InheritedPropertySheets=[ | 169 InheritedPropertySheets=[ |
| 172 '$(SolutionDir)../build/debug.vsprops', | 170 '$(SolutionDir)../build/debug.vsprops', |
| 173 './debugger_disabled.vsprops', | 171 './debugger_disabled.vsprops', |
| 174 ]) | 172 ]) |
| 175 | 173 |
| 176 p.AddConfig('Release|Win32', | 174 p.AddConfig('Release|Win32', |
| 177 InheritedPropertySheets=[ | 175 InheritedPropertySheets=[ |
| 178 '$(SolutionDir)../build/release.vsprops', | 176 '$(SolutionDir)../build/release.vsprops', |
| 179 './debugger_disabled.vsprops', | 177 './debugger_disabled.vsprops', |
| 180 ]) | 178 ]) |
| OLD | NEW |