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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 6024007: First cut at creating a refactored version of tab_contents_views. This is (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a merge error on the include paths Created 9 years, 11 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA',
(...skipping 3400 matching lines...) Expand 10 before | Expand all | Expand 10 after
3411 'browser/ui/views/status_bubble_views.h', 3411 'browser/ui/views/status_bubble_views.h',
3412 'browser/ui/views/status_icons/status_icon_win.cc', 3412 'browser/ui/views/status_icons/status_icon_win.cc',
3413 'browser/ui/views/status_icons/status_icon_win.h', 3413 'browser/ui/views/status_icons/status_icon_win.h',
3414 'browser/ui/views/status_icons/status_tray_gtk.cc', 3414 'browser/ui/views/status_icons/status_tray_gtk.cc',
3415 'browser/ui/views/status_icons/status_tray_win.cc', 3415 'browser/ui/views/status_icons/status_tray_win.cc',
3416 'browser/ui/views/status_icons/status_tray_win.h', 3416 'browser/ui/views/status_icons/status_tray_win.h',
3417 'browser/ui/views/tab_icon_view.cc', 3417 'browser/ui/views/tab_icon_view.cc',
3418 'browser/ui/views/tab_icon_view.h', 3418 'browser/ui/views/tab_icon_view.h',
3419 'browser/ui/views/tab_contents/tab_contents_container.cc', 3419 'browser/ui/views/tab_contents/tab_contents_container.cc',
3420 'browser/ui/views/tab_contents/tab_contents_container.h', 3420 'browser/ui/views/tab_contents/tab_contents_container.h',
3421 'browser/ui/views/tab_contents/tab_contents_container_native.cc',
3422 'browser/ui/views/tab_contents/tab_contents_container_native.h',
3423 'browser/ui/views/tab_contents/tab_contents_container_views.cc',
3424 'browser/ui/views/tab_contents/tab_contents_container_views.h',
3421 'browser/ui/views/tab_contents/native_tab_contents_container.h', 3425 'browser/ui/views/tab_contents/native_tab_contents_container.h',
3422 'browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc', 3426 'browser/ui/views/tab_contents/native_tab_contents_container_gtk.cc',
3423 'browser/ui/views/tab_contents/native_tab_contents_container_gtk.h', 3427 'browser/ui/views/tab_contents/native_tab_contents_container_gtk.h',
3424 'browser/ui/views/tab_contents/native_tab_contents_container_win.cc', 3428 'browser/ui/views/tab_contents/native_tab_contents_container_win.cc',
3425 'browser/ui/views/tab_contents/native_tab_contents_container_win.h', 3429 'browser/ui/views/tab_contents/native_tab_contents_container_win.h',
3426 'browser/ui/views/tab_contents/render_view_context_menu_views.cc', 3430 'browser/ui/views/tab_contents/render_view_context_menu_views.cc',
3427 'browser/ui/views/tab_contents/render_view_context_menu_views.h', 3431 'browser/ui/views/tab_contents/render_view_context_menu_views.h',
3428 'browser/ui/views/tab_contents/tab_contents_drag_win.cc', 3432 'browser/ui/views/tab_contents/tab_contents_drag_win.cc',
3429 'browser/ui/views/tab_contents/tab_contents_drag_win.h', 3433 'browser/ui/views/tab_contents/tab_contents_drag_win.h',
3430 'browser/ui/views/tab_contents/tab_contents_view_gtk.cc', 3434 'browser/ui/views/tab_contents/tab_contents_view_gtk.cc',
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
3579 'browser/password_manager/native_backend_gnome_x.h', 3583 'browser/password_manager/native_backend_gnome_x.h',
3580 'browser/password_manager/native_backend_gnome_x.cc', 3584 'browser/password_manager/native_backend_gnome_x.cc',
3581 ], 3585 ],
3582 }], 3586 }],
3583 ['touchui==0', { 3587 ['touchui==0', {
3584 'sources/': [ 3588 'sources/': [
3585 ['exclude', '^browser/chromeos/dom_ui/login/'], 3589 ['exclude', '^browser/chromeos/dom_ui/login/'],
3586 ['exclude', '^browser/dom_ui/keyboard_ui.*'], 3590 ['exclude', '^browser/dom_ui/keyboard_ui.*'],
3587 ['exclude', '^browser/renderer_host/render_widget_host_view_views.*' ], 3591 ['exclude', '^browser/renderer_host/render_widget_host_view_views.*' ],
3588 ['exclude', '^browser/ui/touch/*'], 3592 ['exclude', '^browser/ui/touch/*'],
3593 ['exclude', '^browser/ui/views/tab_contents/tab_contents_container_v iews.cc'],
3594 ['exclude', '^browser/ui/views/tab_contents/tab_contents_container_v iews.h'],
3589 ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_views. *'], 3595 ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_views. *'],
3590 ], 3596 ],
3591 }], 3597 }],
3592 ['touchui==1', { 3598 ['touchui==1', {
3593 'sources/': [ 3599 'sources/': [
3594 ['include', '^browser/ui/touch/*'], 3600 ['include', '^browser/ui/touch/*'],
3595 ['exclude', '^browser/chromeos/frame/browser_non_client_frame_view_f actory_chromeos.cc'], 3601 ['exclude', '^browser/chromeos/frame/browser_non_client_frame_view_f actory_chromeos.cc'],
3602 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'],
3603 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.h'],
3596 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.cc'] , 3604 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.cc'] ,
3597 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.h'], 3605 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.h'],
3598 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'],
3599 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.h'],
3600 ['exclude', '^browser/ui/views/frame/browser_non_client_frame_view_f actory_gtk.cc'], 3606 ['exclude', '^browser/ui/views/frame/browser_non_client_frame_view_f actory_gtk.cc'],
3601 ['exclude', '^browser/views/tab_contents/tab_contents_view_gtk.cc'], 3607 ['exclude', '^browser/views/tab_contents/tab_contents_view_gtk.cc'],
3602 ['exclude', '^browser/views/tab_contents/tab_contents_view_gtk.h'], 3608 ['exclude', '^browser/views/tab_contents/tab_contents_view_gtk.h'],
3603 ], 3609 ],
3604 }], 3610 }],
3605 ['touchui==1 and chromeos==1', { 3611 ['touchui==1 and chromeos==1', {
3606 'sources/': [ 3612 'sources/': [
3607 ['include', '^browser/chromeos/dom_ui/login/'], 3613 ['include', '^browser/chromeos/dom_ui/login/'],
3608 ], 3614 ],
3609 }], 3615 }],
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
4105 ['include', '^browser/ui/views/select_file_dialog.cc'], 4111 ['include', '^browser/ui/views/select_file_dialog.cc'],
4106 ['include', '^browser/ui/views/status_bubble_views.cc'], 4112 ['include', '^browser/ui/views/status_bubble_views.cc'],
4107 ['include', '^browser/ui/views/status_bubble_views.h'], 4113 ['include', '^browser/ui/views/status_bubble_views.h'],
4108 ['include', '^browser/ui/views/status_icons/status_tray_gtk.cc'] , 4114 ['include', '^browser/ui/views/status_icons/status_tray_gtk.cc'] ,
4109 ['include', '^browser/ui/views/tab_contents/native_tab_contents_ container_gtk.cc'], 4115 ['include', '^browser/ui/views/tab_contents/native_tab_contents_ container_gtk.cc'],
4110 ['include', '^browser/ui/views/tab_contents/native_tab_contents_ container_gtk.h'], 4116 ['include', '^browser/ui/views/tab_contents/native_tab_contents_ container_gtk.h'],
4111 ['include', '^browser/ui/views/tab_contents/render_view_context_ menu_views.cc'], 4117 ['include', '^browser/ui/views/tab_contents/render_view_context_ menu_views.cc'],
4112 ['include', '^browser/ui/views/tab_contents/render_view_context_ menu_views.h'], 4118 ['include', '^browser/ui/views/tab_contents/render_view_context_ menu_views.h'],
4113 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er.cc'], 4119 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er.cc'],
4114 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er.h'], 4120 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er.h'],
4121 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er_native.cc'],
4122 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er_native.h'],
4123 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er_views.cc'],
4124 ['include', '^browser/ui/views/tab_contents/tab_contents_contain er_views.h'],
4115 ['include', '^browser/ui/views/tab_contents/tab_contents_view_gt k.cc'], 4125 ['include', '^browser/ui/views/tab_contents/tab_contents_view_gt k.cc'],
4116 ['include', '^browser/ui/views/tab_contents/tab_contents_view_gt k.h'], 4126 ['include', '^browser/ui/views/tab_contents/tab_contents_view_gt k.h'],
4117 ['include', '^browser/ui/views/tab_icon_view.cc'], 4127 ['include', '^browser/ui/views/tab_icon_view.cc'],
4118 ['include', '^browser/ui/views/tab_icon_view.h'], 4128 ['include', '^browser/ui/views/tab_icon_view.h'],
4119 ['include', '^browser/ui/views/tabs/base_tab.cc'], 4129 ['include', '^browser/ui/views/tabs/base_tab.cc'],
4120 ['include', '^browser/ui/views/tabs/base_tab.h'], 4130 ['include', '^browser/ui/views/tabs/base_tab.h'],
4121 ['include', '^browser/ui/views/tabs/base_tab_strip.cc'], 4131 ['include', '^browser/ui/views/tabs/base_tab_strip.cc'],
4122 ['include', '^browser/ui/views/tabs/base_tab_strip.h'], 4132 ['include', '^browser/ui/views/tabs/base_tab_strip.h'],
4123 ['include', '^browser/ui/views/tabs/browser_tab_strip_controller .cc'], 4133 ['include', '^browser/ui/views/tabs/browser_tab_strip_controller .cc'],
4124 ['include', '^browser/ui/views/tabs/browser_tab_strip_controller .h'], 4134 ['include', '^browser/ui/views/tabs/browser_tab_strip_controller .h'],
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
4287 ['OS=="linux" and toolkit_views==1 and touchui==1', { 4297 ['OS=="linux" and toolkit_views==1 and touchui==1', {
4288 'sources/': [ 4298 'sources/': [
4289 ['include', '^browser/ui/views/tab_contents/tab_contents_view_vi ews.cc'], 4299 ['include', '^browser/ui/views/tab_contents/tab_contents_view_vi ews.cc'],
4290 ['include', '^browser/ui/views/tab_contents/tab_contents_view_vi ews.h'], 4300 ['include', '^browser/ui/views/tab_contents/tab_contents_view_vi ews.h'],
4291 ['exclude', '^browser/ui/views/frame/browser_non_client_frame_vi ew_factory_gtk.cc'], 4301 ['exclude', '^browser/ui/views/frame/browser_non_client_frame_vi ew_factory_gtk.cc'],
4292 ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_gt k.cc'], 4302 ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_gt k.cc'],
4293 ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_gt k.h'], 4303 ['exclude', '^browser/ui/views/tab_contents/tab_contents_view_gt k.h'],
4294 # TODO(anicolao): exclude these once we have DOMUI dialogs 4304 # TODO(anicolao): exclude these once we have DOMUI dialogs
4295 # ['exclude', '^browser/gtk/constrained_window_gtk.cc'], 4305 # ['exclude', '^browser/gtk/constrained_window_gtk.cc'],
4296 # ['exclude', '^browser/gtk/constrained_window_gtk.h'], 4306 # ['exclude', '^browser/gtk/constrained_window_gtk.h'],
4307 ['exclude', '^browser/ui/views/tab_contents/tab_contents_contain er_native.cc'],
4308 ['exclude', '^browser/ui/views/tab_contents/tab_contents_contain er_native.h'],
4297 ], 4309 ],
4298 }], 4310 }],
4299 ['OS=="linux" and chromeos==1',{ 4311 ['OS=="linux" and chromeos==1',{
4300 'sources/': [ 4312 'sources/': [
4301 ['exclude', '^browser/extensions/extension_tts_api_linux.cc'], 4313 ['exclude', '^browser/extensions/extension_tts_api_linux.cc'],
4302 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'], 4314 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'],
4303 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'], 4315 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'],
4304 ['exclude', '^browser/notifications/balloon_collection.cc'], 4316 ['exclude', '^browser/notifications/balloon_collection.cc'],
4305 ['exclude', '^browser/notifications/balloon_collection_impl.h'], 4317 ['exclude', '^browser/notifications/balloon_collection_impl.h'],
4306 ['exclude', '^browser/notifications/balloon_collection_linux.cc' ], 4318 ['exclude', '^browser/notifications/balloon_collection_linux.cc' ],
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
4529 ], 4541 ],
4530 }, 4542 },
4531 ], 4543 ],
4532 } 4544 }
4533 4545
4534 # Local Variables: 4546 # Local Variables:
4535 # tab-width:2 4547 # tab-width:2
4536 # indent-tabs-mode:nil 4548 # indent-tabs-mode:nil
4537 # End: 4549 # End:
4538 # vim: set expandtab tabstop=2 shiftwidth=2: 4550 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698