| 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 'variables': { | 6 'variables': { |
| 7 # All .cc, .h, .m, and .mm files under browser except for: | 7 # All .cc, .h, .m, and .mm files under browser except for: |
| 8 # * tests and mocks. | 8 # * tests and mocks. |
| 9 # * code below browser/chromeos | 9 # * code below browser/chromeos |
| 10 # * code below browser/extensions | 10 # * code below browser/extensions |
| (...skipping 3048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3059 }, | 3059 }, |
| 3060 'targets': [ | 3060 'targets': [ |
| 3061 { | 3061 { |
| 3062 'target_name': 'browser', | 3062 'target_name': 'browser', |
| 3063 'type': 'static_library', | 3063 'type': 'static_library', |
| 3064 'variables': { 'enable_wexit_time_destructors': 1, }, | 3064 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 3065 'dependencies': [ | 3065 'dependencies': [ |
| 3066 # NOTE: New dependencies should generally be added in the OS!="ios" | 3066 # NOTE: New dependencies should generally be added in the OS!="ios" |
| 3067 # dependencies block below, rather than here. | 3067 # dependencies block below, rather than here. |
| 3068 'browser_ui', | 3068 'browser_ui', |
| 3069 'chrome_common_features', | |
| 3070 'chrome_resources.gyp:chrome_extra_resources', | 3069 'chrome_resources.gyp:chrome_extra_resources', |
| 3071 'chrome_resources.gyp:chrome_resources', | 3070 'chrome_resources.gyp:chrome_resources', |
| 3072 'chrome_resources.gyp:chrome_strings', | 3071 'chrome_resources.gyp:chrome_strings', |
| 3073 'chrome_resources.gyp:chrome_ui_string_overrider_factory', | 3072 'chrome_resources.gyp:chrome_ui_string_overrider_factory', |
| 3074 'chrome_resources.gyp:make_chrome_ui_string_overrider_factory', | 3073 'chrome_resources.gyp:make_chrome_ui_string_overrider_factory', |
| 3075 'chrome_resources.gyp:platform_locale_settings', | 3074 'chrome_resources.gyp:platform_locale_settings', |
| 3076 'chrome_resources.gyp:theme_resources', | 3075 'chrome_resources.gyp:theme_resources', |
| 3077 'common', | 3076 'common', |
| 3078 'probe_message_proto', | 3077 'probe_message_proto', |
| 3079 '../components/components.gyp:autofill_core_browser', | 3078 '../components/components.gyp:autofill_core_browser', |
| (...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4105 '../components/components.gyp:omnibox_browser', | 4104 '../components/components.gyp:omnibox_browser', |
| 4106 '../components/components.gyp:rlz', | 4105 '../components/components.gyp:rlz', |
| 4107 '../components/components.gyp:search_engines', | 4106 '../components/components.gyp:search_engines', |
| 4108 '../rlz/rlz.gyp:rlz_lib', | 4107 '../rlz/rlz.gyp:rlz_lib', |
| 4109 ], | 4108 ], |
| 4110 }, | 4109 }, |
| 4111 ], | 4110 ], |
| 4112 }], | 4111 }], |
| 4113 ], | 4112 ], |
| 4114 } | 4113 } |
| OLD | NEW |