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

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

Issue 40013: Implement a GTK LocationBarView and Autocomplete. (Closed)
Patch Set: Feedback Created 11 years, 9 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
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 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 729
730 # Add files shared across non-Windows platforms. 730 # Add files shared across non-Windows platforms.
731 input_files.Append( 731 input_files.Append(
732 'importer/firefox_profile_lock_posix.cc', 732 'importer/firefox_profile_lock_posix.cc',
733 'renderer_host/backing_store_x.cc', 733 'renderer_host/backing_store_x.cc',
734 ) 734 )
735 735
736 736
737 if env.Bit('linux'): 737 if env.Bit('linux'):
738 input_files.Extend([ 738 input_files.Extend([
739 'autocomplete/autocomplete_edit_view_gtk.cc',
740 'autocomplete/autocomplete_popup_view_gtk.cc',
739 'browser_main_gtk.cc', 741 'browser_main_gtk.cc',
740 'gtk/back_forward_menu_model_gtk.cc', 742 'gtk/back_forward_menu_model_gtk.cc',
741 'gtk/browser_toolbar_gtk.cc', 743 'gtk/browser_toolbar_gtk.cc',
742 'gtk/browser_window_factory_gtk.cc', 744 'gtk/browser_window_factory_gtk.cc',
743 'gtk/browser_window_gtk.cc', 745 'gtk/browser_window_gtk.cc',
744 'gtk/custom_button.cc', 746 'gtk/custom_button.cc',
745 'gtk/download_item_gtk.cc', 747 'gtk/download_item_gtk.cc',
746 'gtk/download_shelf_gtk.cc', 748 'gtk/download_shelf_gtk.cc',
749 'gtk/location_bar_view_gtk.cc',
747 'gtk/menu_gtk.cc', 750 'gtk/menu_gtk.cc',
748 'gtk/nine_box.cc', 751 'gtk/nine_box.cc',
749 'gtk/standard_menus.cc', 752 'gtk/standard_menus.cc',
750 'gtk/status_bubble_gtk.cc', 753 'gtk/status_bubble_gtk.cc',
751 'gtk/tab_contents_container_gtk.cc', 754 'gtk/tab_contents_container_gtk.cc',
752 'process_singleton_linux.cc', 755 'process_singleton_linux.cc',
753 'renderer_host/render_widget_host_view_gtk.cc', 756 'renderer_host/render_widget_host_view_gtk.cc',
754 'tab_contents/web_contents_view_gtk.cc', 757 'tab_contents/web_contents_view_gtk.cc',
755 'tab_contents/render_view_context_menu_gtk.cc', 758 'tab_contents/render_view_context_menu_gtk.cc',
756 ]) 759 ])
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 869
867 xmldoc_tool_list = [ 870 xmldoc_tool_list = [
868 MSVSTool('VCCLCompilerTool', 871 MSVSTool('VCCLCompilerTool',
869 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 872 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
870 ObjectFile='$(IntDir)/$(InputName)1.obj'), 873 ObjectFile='$(IntDir)/$(InputName)1.obj'),
871 ] 874 ]
872 875
873 for filename in xmldoc_files: 876 for filename in xmldoc_files:
874 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 877 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
875 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 878 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc ('k') | chrome/browser/gtk/browser_toolbar_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698