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 'chrome_resources.gyp:chrome_extra_resources', | 17 'chrome_resources.gyp:chrome_extra_resources', |
18 'chrome_resources.gyp:chrome_resources', | 18 'chrome_resources.gyp:chrome_resources', |
19 'chrome_resources.gyp:chrome_strings', | 19 'chrome_resources.gyp:chrome_strings', |
20 'chrome_resources.gyp:platform_locale_settings', | 20 'chrome_resources.gyp:platform_locale_settings', |
21 'chrome_resources.gyp:theme_resources', | 21 'chrome_resources.gyp:theme_resources', |
22 'common', | 22 'common', |
23 'common/extensions/api/api.gyp:api', | 23 'common/extensions/api/api.gyp:api', |
24 'common_net', | 24 'common_net', |
25 'debugger', | 25 'debugger', |
26 'in_memory_url_index_cache_proto', | 26 'in_memory_url_index_cache_proto', |
27 'installer_util', | 27 'installer_util', |
28 '../build/temp_gyp/googleurl.gyp:googleurl', | |
29 '../content/content.gyp:content_browser', | 28 '../content/content.gyp:content_browser', |
30 '../crypto/crypto.gyp:crypto', | 29 '../crypto/crypto.gyp:crypto', |
31 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 30 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
32 '../net/net.gyp:net', | 31 '../net/net.gyp:net', |
33 '../skia/skia.gyp:skia', | 32 '../skia/skia.gyp:skia', |
34 '../sync/sync.gyp:sync', | 33 '../sync/sync.gyp:sync', |
35 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 34 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
36 '../third_party/icu/icu.gyp:icui18n', | 35 '../third_party/icu/icu.gyp:icui18n', |
37 '../third_party/icu/icu.gyp:icuuc', | 36 '../third_party/icu/icu.gyp:icuuc', |
38 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 37 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
39 '../third_party/libusb/libusb.gyp:libusb', | 38 '../third_party/libusb/libusb.gyp:libusb', |
40 '../third_party/re2/re2.gyp:re2', | 39 '../third_party/re2/re2.gyp:re2', |
41 '../ui/base/strings/ui_strings.gyp:ui_strings', | 40 '../ui/base/strings/ui_strings.gyp:ui_strings', |
42 '../ui/ui.gyp:ui', | 41 '../ui/ui.gyp:ui', |
43 '../ui/ui.gyp:ui_resources', | 42 '../ui/ui.gyp:ui_resources', |
| 43 '../url/url.gyp:url_lib', |
44 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', | 44 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
45 '../webkit/support/webkit_support.gyp:glue', | 45 '../webkit/support/webkit_support.gyp:glue', |
46 '../webkit/support/webkit_support.gyp:webkit_base', | 46 '../webkit/support/webkit_support.gyp:webkit_base', |
47 '../webkit/support/webkit_support.gyp:webkit_resources', | 47 '../webkit/support/webkit_support.gyp:webkit_resources', |
48 '../webkit/support/webkit_support.gyp:webkit_storage', | 48 '../webkit/support/webkit_support.gyp:webkit_storage', |
49 ], | 49 ], |
50 'include_dirs': [ | 50 'include_dirs': [ |
51 '..', | 51 '..', |
52 '<(INTERMEDIATE_DIR)', | 52 '<(INTERMEDIATE_DIR)', |
53 ], | 53 ], |
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
974 'variables': { | 974 'variables': { |
975 'proto_in_dir': 'browser/chromeos/contacts', | 975 'proto_in_dir': 'browser/chromeos/contacts', |
976 'proto_out_dir': 'chrome/browser/chromeos/contacts', | 976 'proto_out_dir': 'chrome/browser/chromeos/contacts', |
977 }, | 977 }, |
978 'includes': [ '../build/protoc.gypi' ] | 978 'includes': [ '../build/protoc.gypi' ] |
979 }, | 979 }, |
980 ], | 980 ], |
981 },], # 'chromeos=1' | 981 },], # 'chromeos=1' |
982 ], # 'conditions' | 982 ], # 'conditions' |
983 } | 983 } |
OLD | NEW |