| 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 3042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3053 }, | 3053 }, |
| 3054 'targets': [ | 3054 'targets': [ |
| 3055 { | 3055 { |
| 3056 'target_name': 'browser', | 3056 'target_name': 'browser', |
| 3057 'type': 'static_library', | 3057 'type': 'static_library', |
| 3058 'variables': { 'enable_wexit_time_destructors': 1, }, | 3058 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 3059 'dependencies': [ | 3059 'dependencies': [ |
| 3060 # NOTE: New dependencies should generally be added in the OS!="ios" | 3060 # NOTE: New dependencies should generally be added in the OS!="ios" |
| 3061 # dependencies block below, rather than here. | 3061 # dependencies block below, rather than here. |
| 3062 'browser_ui', | 3062 'browser_ui', |
| 3063 'chrome_common_features', |
| 3063 'chrome_resources.gyp:chrome_extra_resources', | 3064 'chrome_resources.gyp:chrome_extra_resources', |
| 3064 'chrome_resources.gyp:chrome_resources', | 3065 'chrome_resources.gyp:chrome_resources', |
| 3065 'chrome_resources.gyp:chrome_strings', | 3066 'chrome_resources.gyp:chrome_strings', |
| 3066 'chrome_resources.gyp:chrome_ui_string_overrider_factory', | 3067 'chrome_resources.gyp:chrome_ui_string_overrider_factory', |
| 3067 'chrome_resources.gyp:make_chrome_ui_string_overrider_factory', | 3068 'chrome_resources.gyp:make_chrome_ui_string_overrider_factory', |
| 3068 'chrome_resources.gyp:platform_locale_settings', | 3069 'chrome_resources.gyp:platform_locale_settings', |
| 3069 'chrome_resources.gyp:theme_resources', | 3070 'chrome_resources.gyp:theme_resources', |
| 3070 'common', | 3071 'common', |
| 3071 'probe_message_proto', | 3072 'probe_message_proto', |
| 3072 '../components/components.gyp:autofill_core_browser', | 3073 '../components/components.gyp:autofill_core_browser', |
| (...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4093 '../components/components.gyp:omnibox_browser', | 4094 '../components/components.gyp:omnibox_browser', |
| 4094 '../components/components.gyp:rlz', | 4095 '../components/components.gyp:rlz', |
| 4095 '../components/components.gyp:search_engines', | 4096 '../components/components.gyp:search_engines', |
| 4096 '../rlz/rlz.gyp:rlz_lib', | 4097 '../rlz/rlz.gyp:rlz_lib', |
| 4097 ], | 4098 ], |
| 4098 }, | 4099 }, |
| 4099 ], | 4100 ], |
| 4100 }], | 4101 }], |
| 4101 ], | 4102 ], |
| 4102 } | 4103 } |
| OLD | NEW |