| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'debugger_node.h', | 48 'debugger_node.h', |
| 49 'debugger_shell.cc', | 49 'debugger_shell.cc', |
| 50 'debugger_shell.h', | 50 'debugger_shell.h', |
| 51 'resources/debugger_resources.h', | 51 'resources/debugger_resources.h', |
| 52 'debugger_view.cc', | 52 'debugger_view.cc', |
| 53 'debugger_view.h', | 53 'debugger_view.h', |
| 54 'debugger_window.cc', | 54 'debugger_window.cc', |
| 55 'debugger_window.h', | 55 'debugger_window.h', |
| 56 'debugger_wrapper.cc', | 56 'debugger_wrapper.cc', |
| 57 'debugger_wrapper.h', | 57 'debugger_wrapper.h', |
| 58 'dev_tools_view.cc', |
| 59 'dev_tools_view.h', |
| 60 'dev_tools_window.cc', |
| 61 'dev_tools_window.h', |
| 58 ]) | 62 ]) |
| 59 | 63 |
| 60 if env.Bit('linux'): | 64 if env.Bit('linux'): |
| 61 # TODO(port): Port these. | 65 # TODO(port): Port these. |
| 62 input_files.Remove( | 66 input_files.Remove( |
| 63 'debugger_contents.cc', | 67 'debugger_contents.cc', |
| 64 'debugger_view.cc', | 68 'debugger_view.cc', |
| 65 'debugger_window.cc', | 69 'debugger_window.cc', |
| 70 'dev_tools_view.cc', |
| 71 'dev_tools_window.cc', |
| 66 ) | 72 ) |
| 67 | 73 |
| 68 if env.Bit('mac'): | 74 if env.Bit('mac'): |
| 69 # TODO(port): Port these. | 75 # TODO(port): Port these. |
| 70 input_files.Remove( | 76 input_files.Remove( |
| 71 'debugger_contents.cc', | 77 'debugger_contents.cc', |
| 72 'debugger_host_impl.cpp', | 78 'debugger_host_impl.cpp', |
| 73 'debugger_node.cc', | 79 'debugger_node.cc', |
| 74 'debugger_view.cc', | 80 'debugger_view.cc', |
| 75 'debugger_window.cc', | 81 'debugger_window.cc', |
| 82 'dev_tools_view.cc', |
| 83 'dev_tools_window.cc', |
| 76 ) | 84 ) |
| 77 | 85 |
| 78 if not env.Bit('mac'): | 86 if not env.Bit('mac'): |
| 79 # TODO(port): Enable for Mac. | 87 # TODO(port): Enable for Mac. |
| 80 env.ChromeLibrary('debugger', input_files) | 88 env.ChromeLibrary('debugger', input_files) |
| 81 | 89 |
| 82 | 90 |
| 83 p = env.ChromeMSVSProject('debugger.vcproj', | 91 p = env.ChromeMSVSProject('debugger.vcproj', |
| 84 dest=('$CHROME_SRC_DIR/chrome/' | 92 dest=('$CHROME_SRC_DIR/chrome/' |
| 85 + 'browser/debugger/debugger.vcproj'), | 93 + 'browser/debugger/debugger.vcproj'), |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 InheritedPropertySheets=[ | 178 InheritedPropertySheets=[ |
| 171 '$(SolutionDir)../build/debug.vsprops', | 179 '$(SolutionDir)../build/debug.vsprops', |
| 172 './debugger_disabled.vsprops', | 180 './debugger_disabled.vsprops', |
| 173 ]) | 181 ]) |
| 174 | 182 |
| 175 p.AddConfig('Release|Win32', | 183 p.AddConfig('Release|Win32', |
| 176 InheritedPropertySheets=[ | 184 InheritedPropertySheets=[ |
| 177 '$(SolutionDir)../build/release.vsprops', | 185 '$(SolutionDir)../build/release.vsprops', |
| 178 './debugger_disabled.vsprops', | 186 './debugger_disabled.vsprops', |
| 179 ]) | 187 ]) |
| OLD | NEW |