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

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

Issue 27147: Linux: server side backing stores (Closed)
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
« no previous file with comments | « chrome/SConscript ('k') | chrome/browser/renderer_host/backing_store.h » ('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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 'tab_contents/web_contents_view_win.cc', 739 'tab_contents/web_contents_view_win.cc',
740 'webdata/web_data_service_win.cc', 740 'webdata/web_data_service_win.cc',
741 'webdata/web_database_win.cc', 741 'webdata/web_database_win.cc',
742 '../tools/build/win/precompiled_wtl.cc', 742 '../tools/build/win/precompiled_wtl.cc',
743 '../tools/build/win/precompiled_wtl.h', 743 '../tools/build/win/precompiled_wtl.h',
744 ) 744 )
745 745
746 # Add files shared across non-Windows platforms. 746 # Add files shared across non-Windows platforms.
747 input_files.Append( 747 input_files.Append(
748 'importer/firefox_profile_lock_posix.cc', 748 'importer/firefox_profile_lock_posix.cc',
749 'renderer_host/backing_store_posix.cc', 749 'renderer_host/backing_store_x.cc',
750 ) 750 )
751 751
752 752
753 if env.Bit('linux'): 753 if env.Bit('linux'):
754 input_files.Extend([ 754 input_files.Extend([
755 'browser_main_gtk.cc', 755 'browser_main_gtk.cc',
756 'gtk/back_forward_menu_model_gtk.cc', 756 'gtk/back_forward_menu_model_gtk.cc',
757 'gtk/browser_toolbar_view_gtk.cc', 757 'gtk/browser_toolbar_view_gtk.cc',
758 'gtk/browser_window_factory_gtk.cc', 758 'gtk/browser_window_factory_gtk.cc',
759 'gtk/browser_window_gtk.cc', 759 'gtk/browser_window_gtk.cc',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 879
880 xmldoc_tool_list = [ 880 xmldoc_tool_list = [
881 MSVSTool('VCCLCompilerTool', 881 MSVSTool('VCCLCompilerTool',
882 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 882 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
883 ObjectFile='$(IntDir)/$(InputName)1.obj'), 883 ObjectFile='$(IntDir)/$(InputName)1.obj'),
884 ] 884 ]
885 885
886 for filename in xmldoc_files: 886 for filename in xmldoc_files:
887 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 887 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
888 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 888 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW
« no previous file with comments | « chrome/SConscript ('k') | chrome/browser/renderer_host/backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698