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

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

Issue 20072: Finish taking out render_messages.h include from other headers. (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
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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 'safe_browsing/safe_browsing_service.cc', 464 'safe_browsing/safe_browsing_service.cc',
465 'safe_browsing/safe_browsing_service.h', 465 'safe_browsing/safe_browsing_service.h',
466 'safe_browsing/safe_browsing_util.cc', 466 'safe_browsing/safe_browsing_util.cc',
467 'safe_browsing/safe_browsing_util.h', 467 'safe_browsing/safe_browsing_util.h',
468 ]), 468 ]),
469 MSVSFilter('Accessibility', [ 469 MSVSFilter('Accessibility', [
470 'browser_accessibility.cc', 470 'browser_accessibility.cc',
471 'browser_accessibility.h', 471 'browser_accessibility.h',
472 'browser_accessibility_manager.cc', 472 'browser_accessibility_manager.cc',
473 'browser_accessibility_manager.h', 473 'browser_accessibility_manager.h',
474 'iaccessible_function_ids.h',
475 ]), 474 ]),
476 MSVSFilter('Download', [ 475 MSVSFilter('Download', [
477 'download/download_exe.cc', 476 'download/download_exe.cc',
478 'download/download_file.cc', 477 'download/download_file.cc',
479 'download/download_file.h', 478 'download/download_file.h',
480 'download/download_item_model.cc', 479 'download/download_item_model.cc',
481 'download/download_item_model.h', 480 'download/download_item_model.h',
482 'download/download_manager.cc', 481 'download/download_manager.cc',
483 'download/download_manager.h', 482 'download/download_manager.h',
484 'download/download_request_manager.cc', 483 'download/download_request_manager.cc',
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 934
936 xmldoc_tool_list = [ 935 xmldoc_tool_list = [
937 MSVSTool('VCCLCompilerTool', 936 MSVSTool('VCCLCompilerTool',
938 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 937 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
939 ObjectFile='$(IntDir)/$(InputName)1.obj'), 938 ObjectFile='$(IntDir)/$(InputName)1.obj'),
940 ] 939 ]
941 940
942 for filename in xmldoc_files: 941 for filename in xmldoc_files:
943 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 942 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
944 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 943 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698