OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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_ui', | 8 'target_name': 'browser_ui', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
11 # Since browser and browser_ui actually depend on each other, | 11 # Since browser and browser_ui actually depend on each other, |
12 # we must omit the dependency from browser_ui to browser. | 12 # we must omit the dependency from browser_ui to browser. |
13 # However, this means browser_ui and browser should more or less | 13 # However, this means browser_ui and browser should more or less |
14 # have the same dependencies. Once browser_ui is untangled from | 14 # have the same dependencies. Once browser_ui is untangled from |
15 # browser, then we can clean up these dependencies. | 15 # browser, then we can clean up these dependencies. |
16 'dependencies': [ | 16 'dependencies': [ |
17 # NOTE: New dependencies should generally be added in the OS!="ios" | 17 # NOTE: New dependencies should generally be added in the OS!="ios" |
18 # dependencies block below, rather than here. | 18 # dependencies block below, rather than here. |
19 'cert_logger_proto', | 19 'cert_logger_proto', |
| 20 'chrome_browser_ui_views.gyp:browser_ui_views', |
20 'chrome_resources.gyp:chrome_extra_resources', | 21 'chrome_resources.gyp:chrome_extra_resources', |
21 'chrome_resources.gyp:chrome_resources', | 22 'chrome_resources.gyp:chrome_resources', |
22 'chrome_resources.gyp:chrome_strings', | 23 'chrome_resources.gyp:chrome_strings', |
23 'chrome_resources.gyp:platform_locale_settings', | 24 'chrome_resources.gyp:platform_locale_settings', |
24 'chrome_resources.gyp:theme_resources', | 25 'chrome_resources.gyp:theme_resources', |
25 'common', | 26 'common', |
26 'common_net', | 27 'common_net', |
27 'in_memory_url_index_cache_proto', | 28 'in_memory_url_index_cache_proto', |
28 'safe_browsing_proto', | 29 'safe_browsing_proto', |
29 'safe_browsing_report_proto', | 30 'safe_browsing_report_proto', |
(...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1363 'browser/ui/top_level_widget.h', | 1364 'browser/ui/top_level_widget.h', |
1364 'browser/ui/uma_browsing_activity_observer.cc', | 1365 'browser/ui/uma_browsing_activity_observer.cc', |
1365 'browser/ui/uma_browsing_activity_observer.h', | 1366 'browser/ui/uma_browsing_activity_observer.h', |
1366 'browser/ui/uninstall_browser_prompt.h', | 1367 'browser/ui/uninstall_browser_prompt.h', |
1367 'browser/ui/unload_controller.cc', | 1368 'browser/ui/unload_controller.cc', |
1368 'browser/ui/unload_controller.h', | 1369 'browser/ui/unload_controller.h', |
1369 'browser/ui/user_data_dir_dialog.h', | 1370 'browser/ui/user_data_dir_dialog.h', |
1370 'browser/ui/view_ids.h', | 1371 'browser/ui/view_ids.h', |
1371 'browser/ui/views/about_ipc_dialog.cc', | 1372 'browser/ui/views/about_ipc_dialog.cc', |
1372 'browser/ui/views/about_ipc_dialog.h', | 1373 'browser/ui/views/about_ipc_dialog.h', |
1373 'browser/ui/views/accelerator_table.cc', | |
1374 'browser/ui/views/accelerator_table.h', | |
1375 'browser/ui/views/accessibility/accessibility_event_router_views.cc', | 1374 'browser/ui/views/accessibility/accessibility_event_router_views.cc', |
1376 'browser/ui/views/accessibility/accessibility_event_router_views.h', | 1375 'browser/ui/views/accessibility/accessibility_event_router_views.h', |
1377 'browser/ui/views/accessibility/invert_bubble_view.cc', | 1376 'browser/ui/views/accessibility/invert_bubble_view.cc', |
1378 'browser/ui/views/accessibility/invert_bubble_view.h', | 1377 'browser/ui/views/accessibility/invert_bubble_view.h', |
1379 'browser/ui/views/action_box_menu.cc', | 1378 'browser/ui/views/action_box_menu.cc', |
1380 'browser/ui/views/action_box_menu.h', | 1379 'browser/ui/views/action_box_menu.h', |
1381 'browser/ui/views/app_menu_button_win.cc', | 1380 'browser/ui/views/app_menu_button_win.cc', |
1382 'browser/ui/views/app_menu_button_win.h', | 1381 'browser/ui/views/app_menu_button_win.h', |
1383 'browser/ui/views/app_list/app_list_controller_win.cc', | 1382 'browser/ui/views/app_list/app_list_controller_win.cc', |
1384 'browser/ui/views/ash/balloon_collection_impl_ash.cc', | 1383 'browser/ui/views/ash/balloon_collection_impl_ash.cc', |
(...skipping 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2816 }], | 2815 }], |
2817 ['enable_message_center==1', { | 2816 ['enable_message_center==1', { |
2818 'dependencies': [ | 2817 'dependencies': [ |
2819 '../ui/message_center/message_center.gyp:message_center', | 2818 '../ui/message_center/message_center.gyp:message_center', |
2820 ], | 2819 ], |
2821 }], | 2820 }], |
2822 ], | 2821 ], |
2823 }, | 2822 }, |
2824 ], | 2823 ], |
2825 } | 2824 } |
OLD | NEW |