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

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

Issue 21427: Add importer/firefox_profile_lock_posix.cc to the build. (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 | no next file » | 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 'renderer_host/render_widget_host_view_win.cc', 772 'renderer_host/render_widget_host_view_win.cc',
773 'tab_contents/web_contents_view_win.cc', 773 'tab_contents/web_contents_view_win.cc',
774 'webdata/web_data_service_win.cc', 774 'webdata/web_data_service_win.cc',
775 'webdata/web_database_win.cc', 775 'webdata/web_database_win.cc',
776 '../tools/build/win/precompiled_wtl.cc', 776 '../tools/build/win/precompiled_wtl.cc',
777 '../tools/build/win/precompiled_wtl.h', 777 '../tools/build/win/precompiled_wtl.h',
778 ) 778 )
779 779
780 # Add files shared across non-Windows platforms. 780 # Add files shared across non-Windows platforms.
781 input_files.Append( 781 input_files.Append(
782 'importer/firefox_profile_lock_posix.cc',
782 'renderer_host/backing_store_posix.cc', 783 'renderer_host/backing_store_posix.cc',
783 ) 784 )
784 785
785 786
786 if env.Bit('linux'): 787 if env.Bit('linux'):
787 input_files.Extend([ 788 input_files.Extend([
788 'browser_main_gtk.cc', 789 'browser_main_gtk.cc',
789 'gtk/browser_toolbar_view_gtk.cc', 790 'gtk/browser_toolbar_view_gtk.cc',
790 'gtk/browser_window_factory_gtk.cc', 791 'gtk/browser_window_factory_gtk.cc',
791 'gtk/browser_window_gtk.cc', 792 'gtk/browser_window_gtk.cc',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
907 908
908 xmldoc_tool_list = [ 909 xmldoc_tool_list = [
909 MSVSTool('VCCLCompilerTool', 910 MSVSTool('VCCLCompilerTool',
910 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 911 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
911 ObjectFile='$(IntDir)/$(InputName)1.obj'), 912 ObjectFile='$(IntDir)/$(InputName)1.obj'),
912 ] 913 ]
913 914
914 for filename in xmldoc_files: 915 for filename in xmldoc_files:
915 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 916 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
916 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 917 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698