OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 3060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3071 ['exclude', '^browser/extensions/extension_host_mac.h'], | 3071 ['exclude', '^browser/extensions/extension_host_mac.h'], |
3072 ['exclude', '^browser/extensions/extension_host_mac.mm'], | 3072 ['exclude', '^browser/extensions/extension_host_mac.mm'], |
3073 ['exclude', '^browser/extensions/external_registry_extension_pro
vider_win.cc'], | 3073 ['exclude', '^browser/extensions/external_registry_extension_pro
vider_win.cc'], |
3074 ['exclude', '^browser/tab_contents/tab_contents_view_gtk.cc'], | 3074 ['exclude', '^browser/tab_contents/tab_contents_view_gtk.cc'], |
3075 ['exclude', '^browser/tab_contents/tab_contents_view_gtk.h'], | 3075 ['exclude', '^browser/tab_contents/tab_contents_view_gtk.h'], |
3076 ['exclude', '^browser/tab_contents/render_view_context_menu_gtk.
cc'], | 3076 ['exclude', '^browser/tab_contents/render_view_context_menu_gtk.
cc'], |
3077 ['exclude', '^browser/tab_contents/render_view_context_menu_gtk.
h'], | 3077 ['exclude', '^browser/tab_contents/render_view_context_menu_gtk.
h'], |
3078 ['exclude', '^browser/browser_list_gtk.cc'], | 3078 ['exclude', '^browser/browser_list_gtk.cc'], |
3079 ], | 3079 ], |
3080 }], | 3080 }], |
3081 ['OS=="linux" and toolkit_views==1', { | 3081 # These GTK files haven't been ported to views, while ChromeOS has |
| 3082 # its own separate implementation below. So re-include them only on |
| 3083 # non-ChromeOS views Linux builds. |
| 3084 ['OS=="linux" and chromeos==0 and toolkit_views==1', { |
3082 'sources/': [ | 3085 'sources/': [ |
3083 ['include', '^browser/gtk/dialogs_gtk.cc'], | 3086 ['include', '^browser/gtk/dialogs_gtk.cc'], |
3084 ['include', '^browser/gtk/external_protocol_dialog_gtk.cc'], | 3087 ['include', '^browser/gtk/external_protocol_dialog_gtk.cc'], |
3085 ['include', '^browser/gtk/external_protocol_dialog_gtk.h'], | 3088 ['include', '^browser/gtk/external_protocol_dialog_gtk.h'], |
3086 ['include', '^browser/views/notifications/balloon_view.cc'], | 3089 ['include', '^browser/views/notifications/balloon_view.cc'], |
3087 ['include', '^browser/views/notifications/balloon_view.h'], | 3090 ['include', '^browser/views/notifications/balloon_view.h'], |
3088 | 3091 |
3089 ['exclude', '^browser/views/select_file_dialog.cc'], | 3092 ['exclude', '^browser/views/select_file_dialog.cc'], |
3090 ], | 3093 ], |
3091 }], | 3094 }], |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3302 ] | 3305 ] |
3303 }, | 3306 }, |
3304 ], | 3307 ], |
3305 } | 3308 } |
3306 | 3309 |
3307 # Local Variables: | 3310 # Local Variables: |
3308 # tab-width:2 | 3311 # tab-width:2 |
3309 # indent-tabs-mode:nil | 3312 # indent-tabs-mode:nil |
3310 # End: | 3313 # End: |
3311 # vim: set expandtab tabstop=2 shiftwidth=2: | 3314 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |