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

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

Issue 21107: Stub implementation of gtk browser window. (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 | « chrome/app/chrome_dll_main.cc ('k') | chrome/browser/browser_window_factory_gtk.cc » ('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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 808
809 # Add files shared across non-Windows platforms. 809 # Add files shared across non-Windows platforms.
810 input_files.Append( 810 input_files.Append(
811 'renderer_host/backing_store_posix.cc', 811 'renderer_host/backing_store_posix.cc',
812 ) 812 )
813 813
814 814
815 if env.Bit('linux'): 815 if env.Bit('linux'):
816 input_files.Extend([ 816 input_files.Extend([
817 'browser_main_gtk.cc', 817 'browser_main_gtk.cc',
818 'browser_window_factory_gtk.cc',
819 'browser_window_gtk.cc',
818 'renderer_host/render_widget_host_view_gtk.cc', 820 'renderer_host/render_widget_host_view_gtk.cc',
819 ]) 821 ])
820 822
821 if env.Bit('mac'): 823 if env.Bit('mac'):
822 input_files.Remove( 824 input_files.Remove(
823 'spellchecker.cc', 825 'spellchecker.cc',
824 ) 826 )
825 827
826 if env.Bit('windows'): 828 if env.Bit('windows'):
827 env.TypeLibrary('history/history_indexer.idl') 829 env.TypeLibrary('history/history_indexer.idl')
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 929
928 xmldoc_tool_list = [ 930 xmldoc_tool_list = [
929 MSVSTool('VCCLCompilerTool', 931 MSVSTool('VCCLCompilerTool',
930 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 932 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
931 ObjectFile='$(IntDir)/$(InputName)1.obj'), 933 ObjectFile='$(IntDir)/$(InputName)1.obj'),
932 ] 934 ]
933 935
934 for filename in xmldoc_files: 936 for filename in xmldoc_files:
935 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 937 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
936 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 938 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW
« no previous file with comments | « chrome/app/chrome_dll_main.cc ('k') | chrome/browser/browser_window_factory_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698