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

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

Issue 21540: Add developer tools message forwarding to browser (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 | « no previous file | chrome/browser/browser.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 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', 10 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons',
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 'password_manager/password_manager.cc', 393 'password_manager/password_manager.cc',
394 'password_manager/password_manager.h', 394 'password_manager/password_manager.h',
395 ]), 395 ]),
396 MSVSFilter('External Tab', [ 396 MSVSFilter('External Tab', [
397 'external_tab_container.cc', 397 'external_tab_container.cc',
398 'external_tab_container.h', 398 'external_tab_container.h',
399 ]), 399 ]),
400 MSVSFilter('DOM UI', [ 400 MSVSFilter('DOM UI', [
401 'dom_ui/chrome_url_data_manager.cc', 401 'dom_ui/chrome_url_data_manager.cc',
402 'dom_ui/chrome_url_data_manager.h', 402 'dom_ui/chrome_url_data_manager.h',
403 'dom_ui/dev_tools_ui.cc',
404 'dom_ui/dev_tools_ui.h',
403 'dom_ui/dom_ui.cc', 405 'dom_ui/dom_ui.cc',
404 'dom_ui/dom_ui.h', 406 'dom_ui/dom_ui.h',
405 'dom_ui/dom_ui_contents.cc', 407 'dom_ui/dom_ui_contents.cc',
406 'dom_ui/dom_ui_contents.h', 408 'dom_ui/dom_ui_contents.h',
407 'dom_ui/dom_ui_host.cc', 409 'dom_ui/dom_ui_host.cc',
408 'dom_ui/dom_ui_host.h', 410 'dom_ui/dom_ui_host.h',
409 'dom_ui/history_ui.cc', 411 'dom_ui/history_ui.cc',
410 'dom_ui/history_ui.h', 412 'dom_ui/history_ui.h',
411 'dom_ui/html_dialog_contents.cc', 413 'dom_ui/html_dialog_contents.cc',
412 'dom_ui/html_dialog_contents.h', 414 'dom_ui/html_dialog_contents.h',
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 878
877 xmldoc_tool_list = [ 879 xmldoc_tool_list = [
878 MSVSTool('VCCLCompilerTool', 880 MSVSTool('VCCLCompilerTool',
879 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 881 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
880 ObjectFile='$(IntDir)/$(InputName)1.obj'), 882 ObjectFile='$(IntDir)/$(InputName)1.obj'),
881 ] 883 ]
882 884
883 for filename in xmldoc_files: 885 for filename in xmldoc_files:
884 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 886 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
885 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 887 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698