Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: chrome/browser/debugger/debugger.scons

Issue 50009: Allow different types of devtools client (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/debugger/debugger.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ])
OLDNEW
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/debugger/debugger.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698