OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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_extensions', | 8 'target_name': 'browser_extensions', |
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_extensions actually depend on each other, | 11 # Since browser and browser_extensions actually depend on each other, |
12 # we must omit the dependency from browser_extensions to browser. | 12 # we must omit the dependency from browser_extensions to browser. |
13 # However, this means browser_extensions and browser should more or less | 13 # However, this means browser_extensions and browser should more or less |
14 # have the same dependencies. Once browser_extensions is untangled from | 14 # have the same dependencies. Once browser_extensions 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 'cast_channel_proto', | 17 'cast_channel_proto', |
18 'chrome_resources.gyp:chrome_extra_resources', | 18 'chrome_resources.gyp:chrome_extra_resources', |
19 'chrome_resources.gyp:chrome_resources', | 19 'chrome_resources.gyp:chrome_resources', |
20 'chrome_resources.gyp:chrome_strings', | 20 'chrome_resources.gyp:chrome_strings', |
21 'chrome_resources.gyp:platform_locale_settings', | 21 'chrome_resources.gyp:platform_locale_settings', |
22 'chrome_resources.gyp:theme_resources', | 22 'chrome_resources.gyp:theme_resources', |
23 'common', | 23 'common', |
24 'common/extensions/api/api.gyp:api', | 24 'common/extensions/api/api.gyp:api', |
25 'common_net', | 25 'common_net', |
26 'debugger', | 26 'debugger', |
27 'in_memory_url_index_cache_proto', | 27 'in_memory_url_index_cache_proto', |
28 'installer_util', | 28 'installer_util', |
29 'sync_file_system_proto', | 29 'sync_file_system_proto', |
| 30 '../components/component_strings.gyp:component_strings', |
30 '../components/components.gyp:onc_component', | 31 '../components/components.gyp:onc_component', |
31 '../components/components.gyp:wifi_component', | 32 '../components/components.gyp:wifi_component', |
32 '../content/content.gyp:content_browser', | 33 '../content/content.gyp:content_browser', |
33 '../crypto/crypto.gyp:crypto', | 34 '../crypto/crypto.gyp:crypto', |
34 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 35 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
35 '../extensions/extensions.gyp:extensions_browser', | 36 '../extensions/extensions.gyp:extensions_browser', |
36 '../net/net.gyp:net', | 37 '../net/net.gyp:net', |
37 '../skia/skia.gyp:skia', | 38 '../skia/skia.gyp:skia', |
38 '../sync/sync.gyp:sync', | 39 '../sync/sync.gyp:sync', |
39 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 40 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
(...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1221 'variables': { | 1222 'variables': { |
1222 'proto_in_dir': 'browser/chromeos/contacts', | 1223 'proto_in_dir': 'browser/chromeos/contacts', |
1223 'proto_out_dir': 'chrome/browser/chromeos/contacts', | 1224 'proto_out_dir': 'chrome/browser/chromeos/contacts', |
1224 }, | 1225 }, |
1225 'includes': [ '../build/protoc.gypi' ] | 1226 'includes': [ '../build/protoc.gypi' ] |
1226 }, | 1227 }, |
1227 ], | 1228 ], |
1228 },], # 'chromeos=1' | 1229 },], # 'chromeos=1' |
1229 ], # 'conditions' | 1230 ], # 'conditions' |
1230 } | 1231 } |
OLD | NEW |