Chromium Code Reviews| Index: chrome/chrome_browser.gypi |
| diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi |
| index 01e9290ba5e91582beccf948a36600dfddde40b8..989371d978aac40eea52c52aebe62b0a41ef68b3 100644 |
| --- a/chrome/chrome_browser.gypi |
| +++ b/chrome/chrome_browser.gypi |
| @@ -3270,6 +3270,8 @@ |
| 'browser/ui/views/tab_contents/tab_contents_view_gtk.h', |
| 'browser/ui/views/tab_contents/tab_contents_view_win.cc', |
| 'browser/ui/views/tab_contents/tab_contents_view_win.h', |
| + 'browser/ui/views/tab_contents/tab_contents_view_views.cc', |
| + 'browser/ui/views/tab_contents/tab_contents_view_views.h', |
| 'browser/ui/views/tabs/base_tab.cc', |
| 'browser/ui/views/tabs/base_tab.h', |
| 'browser/ui/views/tabs/base_tab_strip.cc', |
| @@ -3424,7 +3426,9 @@ |
| 'browser/dom_ui/keyboard_ui.cc', |
| 'browser/dom_ui/keyboard_ui.h', |
| 'browser/renderer_host/render_widget_host_view_views.cc', |
| - 'browser/renderer_host/render_widget_host_view_views.h', |
| + 'browser/renderer_host/render_widget_host_view_views.h', |
| + 'browser/ui/views/tab_contents/tab_contents_view_views.cc', |
| + 'browser/ui/views/tab_contents/tab_contents_view_views.h', |
|
oshima
2010/11/13 01:36:08
replace tabs with space
|
| ], |
| }], |
| ['touchui==1', { |
| @@ -3433,6 +3437,8 @@ |
| ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.h'], |
| ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'], |
| ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.h'], |
| + ['exclude', '^browser/views/tab_contents/tab_contents_view_gtk.cc'], |
| + ['exclude', '^browser/views/tab_contents/tab_contents_view_gtk.h'], |
| ], |
| }], |
| ['OS=="linux"', { |
| @@ -4097,6 +4103,18 @@ |
| ['exclude', '^browser/ui/views/autocomplete/autocomplete_popup_gtk.h'], |
| ], |
| }], |
| + # Touch build only |
| + ['OS=="linux" and toolkit_views==1 and touchui==1', { |
| + 'sources/': [ |
| + ['include', '^browser/ui/views/tab_contents/tab_contents_view_views.cc'], |
| + ['include', '^browser/ui/views/tab_contents/tab_contents_view_views.h'], |
| + ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_gtk.cc'], |
| + ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_gtk.h'], |
| + # TODO(anicolao): exclude these once we have DOMUI dialogs |
| + # ['exclude', '^browser/gtk/constrained_window_gtk.cc'], |
| + # ['exclude', '^browser/gtk/constrained_window_gtk.h'], |
| + ], |
| + }], |
| ['OS=="linux" and chromeos==1',{ |
| 'sources/': [ |
| ['exclude', '^browser/extensions/extension_tts_api_linux.cc'], |