| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'debugger_node.h', | 46 'debugger_node.h', |
| 47 'debugger_shell.cc', | 47 'debugger_shell.cc', |
| 48 'debugger_shell.h', | 48 'debugger_shell.h', |
| 49 'resources/debugger_resources.h', | 49 'resources/debugger_resources.h', |
| 50 'debugger_view.cc', | 50 'debugger_view.cc', |
| 51 'debugger_view.h', | 51 'debugger_view.h', |
| 52 'debugger_window.cc', | 52 'debugger_window.cc', |
| 53 'debugger_window.h', | 53 'debugger_window.h', |
| 54 'debugger_wrapper.cc', | 54 'debugger_wrapper.cc', |
| 55 'debugger_wrapper.h', | 55 'debugger_wrapper.h', |
| 56 'devtools_client_host.h', |
| 56 'devtools_manager.h', | 57 'devtools_manager.h', |
| 57 'devtools_manager.cc', | 58 'devtools_manager.cc', |
| 58 'devtools_view.cc', | 59 'devtools_view.cc', |
| 59 'devtools_view.h', | 60 'devtools_view.h', |
| 60 'devtools_window.h', | 61 'devtools_window.h', |
| 61 ]) | 62 ]) |
| 62 | 63 |
| 63 if env.Bit('linux'): | 64 if env.Bit('linux'): |
| 64 # TODO(port): Port these. | 65 # TODO(port): Port these. |
| 65 input_files.Remove( | 66 input_files.Remove( |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 InheritedPropertySheets=[ | 182 InheritedPropertySheets=[ |
| 182 '$(SolutionDir)../build/debug.vsprops', | 183 '$(SolutionDir)../build/debug.vsprops', |
| 183 './debugger_disabled.vsprops', | 184 './debugger_disabled.vsprops', |
| 184 ]) | 185 ]) |
| 185 | 186 |
| 186 p.AddConfig('Release|Win32', | 187 p.AddConfig('Release|Win32', |
| 187 InheritedPropertySheets=[ | 188 InheritedPropertySheets=[ |
| 188 '$(SolutionDir)../build/release.vsprops', | 189 '$(SolutionDir)../build/release.vsprops', |
| 189 './debugger_disabled.vsprops', | 190 './debugger_disabled.vsprops', |
| 190 ]) | 191 ]) |
| OLD | NEW |