| 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_browser_ui_views.gyp:browser_ui_views', |
| 21 'chrome_resources.gyp:chrome_extra_resources', | 21 'chrome_resources.gyp:chrome_extra_resources', |
| 22 'chrome_resources.gyp:chrome_resources', | 22 'chrome_resources.gyp:chrome_resources', |
| 23 'chrome_resources.gyp:chrome_strings', | 23 'chrome_resources.gyp:chrome_strings', |
| 24 'chrome_resources.gyp:platform_locale_settings', | 24 'chrome_resources.gyp:platform_locale_settings', |
| 25 'chrome_resources.gyp:theme_resources', | 25 'chrome_resources.gyp:theme_resources', |
| 26 'common', | 26 'common', |
| 27 'common_net', | 27 'common_net', |
| 28 'feedback_proto', | |
| 29 'in_memory_url_index_cache_proto', | 28 'in_memory_url_index_cache_proto', |
| 30 'safe_browsing_proto', | 29 'safe_browsing_proto', |
| 31 'safe_browsing_report_proto', | 30 'safe_browsing_report_proto', |
| 32 '../components/components.gyp:auto_login_parser', | 31 '../components/components.gyp:auto_login_parser', |
| 33 '../components/components.gyp:dom_distiller_core', | 32 '../components/components.gyp:dom_distiller_core', |
| 34 '../components/components.gyp:dom_distiller_webui', | 33 '../components/components.gyp:dom_distiller_webui', |
| 34 '../components/components.gyp:feedback_proto', |
| 35 '../components/components.gyp:onc_component', | 35 '../components/components.gyp:onc_component', |
| 36 '../components/components.gyp:password_manager_core_browser', | 36 '../components/components.gyp:password_manager_core_browser', |
| 37 '../components/components_resources.gyp:components_resources', | 37 '../components/components_resources.gyp:components_resources', |
| 38 '../components/components_strings.gyp:components_strings', | 38 '../components/components_strings.gyp:components_strings', |
| 39 '../content/content.gyp:content_browser', | 39 '../content/content.gyp:content_browser', |
| 40 '../content/content.gyp:content_common', | 40 '../content/content.gyp:content_common', |
| 41 '../crypto/crypto.gyp:crypto', | 41 '../crypto/crypto.gyp:crypto', |
| 42 '../skia/skia.gyp:skia', | 42 '../skia/skia.gyp:skia', |
| 43 '../sync/sync.gyp:sync', | 43 '../sync/sync.gyp:sync', |
| 44 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 44 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| (...skipping 3096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3141 ], | 3141 ], |
| 3142 'sources!': [ | 3142 'sources!': [ |
| 3143 'browser/ui/views/session_crashed_bubble_view.cc', | 3143 'browser/ui/views/session_crashed_bubble_view.cc', |
| 3144 'browser/ui/views/session_crashed_bubble_view.h', | 3144 'browser/ui/views/session_crashed_bubble_view.h', |
| 3145 ], | 3145 ], |
| 3146 }], | 3146 }], |
| 3147 ], | 3147 ], |
| 3148 }, | 3148 }, |
| 3149 ], | 3149 ], |
| 3150 } | 3150 } |
| OLD | NEW |