OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'extensions_common', | 11 'target_name': 'extensions_common', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'dependencies': [ | 13 'dependencies': [ |
14 'common/api/api.gyp:extensions_api', | 14 'common/api/api.gyp:extensions_api', |
15 # TODO(benwells): figure out what to do with the api target and | 15 # TODO(benwells): figure out what to do with the api target and |
16 # api resources compiled into the chrome resource bundle. | 16 # api resources compiled into the chrome resource bundle. |
17 # http://crbug.com/162530 | 17 # http://crbug.com/162530 |
18 '../chrome/chrome_resources.gyp:chrome_resources', | 18 '../chrome/chrome_resources.gyp:chrome_resources', |
19 # TODO(jamescook|derat): Pull strings into extensions module. | 19 # TODO(jamescook|derat): Pull strings into extensions module. |
20 '../chrome/chrome_resources.gyp:chrome_strings', | 20 '../chrome/chrome_resources.gyp:chrome_strings', |
| 21 # Need default icons in theme_resources.grd |
| 22 '../chrome/chrome_resources.gyp:theme_resources', |
| 23 |
21 # TODO(tfarina): This dep here is for extensions/common/constants.* | 24 # TODO(tfarina): This dep here is for extensions/common/constants.* |
22 # We should find a way to compile this module within extensions_common. | 25 # We should find a way to compile this module within extensions_common. |
23 '../chrome/common_constants.gyp:common_constants', | 26 '../chrome/common_constants.gyp:common_constants', |
24 '../components/components.gyp:url_matcher', | 27 '../components/components.gyp:url_matcher', |
25 '../content/content.gyp:content_common', | 28 '../content/content.gyp:content_common', |
26 '../crypto/crypto.gyp:crypto', | 29 '../crypto/crypto.gyp:crypto', |
27 '../ipc/ipc.gyp:ipc', | 30 '../ipc/ipc.gyp:ipc', |
28 '../net/net.gyp:net', | 31 '../net/net.gyp:net', |
29 '../third_party/re2/re2.gyp:re2', | 32 '../third_party/re2/re2.gyp:re2', |
30 '../ui/base/ui_base.gyp:ui_base', | 33 '../ui/base/ui_base.gyp:ui_base', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 'common/manifest_constants.cc', | 116 'common/manifest_constants.cc', |
114 'common/manifest_constants.h', | 117 'common/manifest_constants.h', |
115 'common/manifest_handler.cc', | 118 'common/manifest_handler.cc', |
116 'common/manifest_handler.h', | 119 'common/manifest_handler.h', |
117 'common/manifest_handler_helpers.cc', | 120 'common/manifest_handler_helpers.cc', |
118 'common/manifest_handler_helpers.h', | 121 'common/manifest_handler_helpers.h', |
119 'common/manifest_handlers/background_info.cc', | 122 'common/manifest_handlers/background_info.cc', |
120 'common/manifest_handlers/background_info.h', | 123 'common/manifest_handlers/background_info.h', |
121 'common/manifest_handlers/csp_info.cc', | 124 'common/manifest_handlers/csp_info.cc', |
122 'common/manifest_handlers/csp_info.h', | 125 'common/manifest_handlers/csp_info.h', |
| 126 'common/manifest_handlers/icons_handler.cc', |
| 127 'common/manifest_handlers/icons_handler.h', |
123 'common/manifest_handlers/incognito_info.cc', | 128 'common/manifest_handlers/incognito_info.cc', |
124 'common/manifest_handlers/incognito_info.h', | 129 'common/manifest_handlers/incognito_info.h', |
125 'common/manifest_handlers/kiosk_mode_info.cc', | 130 'common/manifest_handlers/kiosk_mode_info.cc', |
126 'common/manifest_handlers/kiosk_mode_info.h', | 131 'common/manifest_handlers/kiosk_mode_info.h', |
127 'common/manifest_handlers/offline_enabled_info.cc', | 132 'common/manifest_handlers/offline_enabled_info.cc', |
128 'common/manifest_handlers/offline_enabled_info.h', | 133 'common/manifest_handlers/offline_enabled_info.h', |
129 'common/manifest_handlers/requirements_info.cc', | 134 'common/manifest_handlers/requirements_info.cc', |
130 'common/manifest_handlers/requirements_info.h', | 135 'common/manifest_handlers/requirements_info.h', |
131 'common/manifest_handlers/sandboxed_page_info.cc', | 136 'common/manifest_handlers/sandboxed_page_info.cc', |
132 'common/manifest_handlers/sandboxed_page_info.h', | 137 'common/manifest_handlers/sandboxed_page_info.h', |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 'common/permissions/api_permission_set_unittest.cc', | 476 'common/permissions/api_permission_set_unittest.cc', |
472 'common/permissions/manifest_permission_set_unittest.cc', | 477 'common/permissions/manifest_permission_set_unittest.cc', |
473 'common/url_pattern_set_unittest.cc', | 478 'common/url_pattern_set_unittest.cc', |
474 'common/url_pattern_unittest.cc', | 479 'common/url_pattern_unittest.cc', |
475 'common/user_script_unittest.cc', | 480 'common/user_script_unittest.cc', |
476 'test/extensions_unittests_main.cc', | 481 'test/extensions_unittests_main.cc', |
477 ], | 482 ], |
478 }, | 483 }, |
479 ] | 484 ] |
480 } | 485 } |
OLD | NEW |