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.gypi:browser_ui_views', | |
tfarina
2013/02/05 13:52:53
My goal is, in future, browser_ui will not (should
| |
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 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1358 'browser/ui/top_level_widget.h', | 1359 'browser/ui/top_level_widget.h', |
1359 'browser/ui/uma_browsing_activity_observer.cc', | 1360 'browser/ui/uma_browsing_activity_observer.cc', |
1360 'browser/ui/uma_browsing_activity_observer.h', | 1361 'browser/ui/uma_browsing_activity_observer.h', |
1361 'browser/ui/uninstall_browser_prompt.h', | 1362 'browser/ui/uninstall_browser_prompt.h', |
1362 'browser/ui/unload_controller.cc', | 1363 'browser/ui/unload_controller.cc', |
1363 'browser/ui/unload_controller.h', | 1364 'browser/ui/unload_controller.h', |
1364 'browser/ui/user_data_dir_dialog.h', | 1365 'browser/ui/user_data_dir_dialog.h', |
1365 'browser/ui/view_ids.h', | 1366 'browser/ui/view_ids.h', |
1366 'browser/ui/views/about_ipc_dialog.cc', | 1367 'browser/ui/views/about_ipc_dialog.cc', |
1367 'browser/ui/views/about_ipc_dialog.h', | 1368 'browser/ui/views/about_ipc_dialog.h', |
1368 'browser/ui/views/accelerator_table.cc', | |
1369 'browser/ui/views/accelerator_table.h', | |
1370 'browser/ui/views/accessibility/accessibility_event_router_views.cc', | 1369 'browser/ui/views/accessibility/accessibility_event_router_views.cc', |
1371 'browser/ui/views/accessibility/accessibility_event_router_views.h', | 1370 'browser/ui/views/accessibility/accessibility_event_router_views.h', |
1372 'browser/ui/views/accessibility/invert_bubble_view.cc', | 1371 'browser/ui/views/accessibility/invert_bubble_view.cc', |
1373 'browser/ui/views/accessibility/invert_bubble_view.h', | 1372 'browser/ui/views/accessibility/invert_bubble_view.h', |
1374 'browser/ui/views/action_box_menu.cc', | 1373 'browser/ui/views/action_box_menu.cc', |
1375 'browser/ui/views/action_box_menu.h', | 1374 'browser/ui/views/action_box_menu.h', |
1376 'browser/ui/views/app_menu_button_win.cc', | 1375 'browser/ui/views/app_menu_button_win.cc', |
1377 'browser/ui/views/app_menu_button_win.h', | 1376 'browser/ui/views/app_menu_button_win.h', |
1378 'browser/ui/views/app_list/app_list_controller_win.cc', | 1377 'browser/ui/views/app_list/app_list_controller_win.cc', |
1379 'browser/ui/views/ash/balloon_collection_impl_ash.cc', | 1378 'browser/ui/views/ash/balloon_collection_impl_ash.cc', |
(...skipping 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2799 }], | 2798 }], |
2800 ['enable_message_center==1', { | 2799 ['enable_message_center==1', { |
2801 'dependencies': [ | 2800 'dependencies': [ |
2802 '../ui/message_center/message_center.gyp:message_center', | 2801 '../ui/message_center/message_center.gyp:message_center', |
2803 ], | 2802 ], |
2804 }], | 2803 }], |
2805 ], | 2804 ], |
2806 }, | 2805 }, |
2807 ], | 2806 ], |
2808 } | 2807 } |
OLD | NEW |