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 # TODO(benwells): figure out what to do with the api target and | 14 # TODO(benwells): figure out what to do with the api target and |
15 # api resources compiled into the chrome resource bundle. | 15 # api resources compiled into the chrome resource bundle. |
16 # http://crbug.com/162530 | 16 # http://crbug.com/162530 |
17 '../chrome/chrome_resources.gyp:chrome_resources', | 17 '../chrome/chrome_resources.gyp:chrome_resources', |
18 # TODO(tfarina): This dep here is for extensions/common/constants.* | |
19 # We should find a way to compile this module within extensions_common. | |
20 '../chrome/common_constants.gyp:common_constants', | |
21 '../components/components.gyp:url_matcher', | 18 '../components/components.gyp:url_matcher', |
22 '../content/content.gyp:content_common', | 19 '../content/content.gyp:content_common', |
23 '../crypto/crypto.gyp:crypto', | 20 '../crypto/crypto.gyp:crypto', |
24 '../ipc/ipc.gyp:ipc', | 21 '../ipc/ipc.gyp:ipc', |
25 '../net/net.gyp:net', | 22 '../net/net.gyp:net', |
26 '../third_party/re2/re2.gyp:re2', | 23 '../third_party/re2/re2.gyp:re2', |
27 '../ui/base/ui_base.gyp:ui_base', | 24 '../ui/base/ui_base.gyp:ui_base', |
28 '../ui/gfx/gfx.gyp:gfx_geometry', | 25 '../ui/gfx/gfx.gyp:gfx_geometry', |
29 '../url/url.gyp:url_lib', | 26 '../url/url.gyp:url_lib', |
30 'common/api/api.gyp:extensions_api', | 27 'common/api/api.gyp:extensions_api', |
31 'extensions_strings.gyp:extensions_strings', | 28 'extensions_strings.gyp:extensions_strings', |
32 ], | 29 ], |
33 'include_dirs': [ | 30 'include_dirs': [ |
34 '..', | 31 '..', |
35 '<(INTERMEDIATE_DIR)', | 32 '<(INTERMEDIATE_DIR)', |
36 ], | 33 ], |
37 'sources': [ | 34 'sources': [ |
38 'common/ad_injection_constants.cc', | 35 'common/ad_injection_constants.cc', |
39 'common/ad_injection_constants.h', | 36 'common/ad_injection_constants.h', |
40 'common/api/messaging/message.h', | 37 'common/api/messaging/message.h', |
41 'common/api/sockets/sockets_manifest_data.cc', | 38 'common/api/sockets/sockets_manifest_data.cc', |
42 'common/api/sockets/sockets_manifest_data.h', | 39 'common/api/sockets/sockets_manifest_data.h', |
43 'common/api/sockets/sockets_manifest_handler.cc', | 40 'common/api/sockets/sockets_manifest_handler.cc', |
44 'common/api/sockets/sockets_manifest_handler.h', | 41 'common/api/sockets/sockets_manifest_handler.h', |
45 'common/api/sockets/sockets_manifest_permission.cc', | 42 'common/api/sockets/sockets_manifest_permission.cc', |
46 'common/api/sockets/sockets_manifest_permission.h', | 43 'common/api/sockets/sockets_manifest_permission.h', |
47 'common/common_manifest_handlers.cc', | 44 'common/common_manifest_handlers.cc', |
48 'common/common_manifest_handlers.h', | 45 'common/common_manifest_handlers.h', |
| 46 'common/constants.cc', |
| 47 'common/constants.h', |
49 'common/crx_file.cc', | 48 'common/crx_file.cc', |
50 'common/crx_file.h', | 49 'common/crx_file.h', |
51 'common/csp_validator.cc', | 50 'common/csp_validator.cc', |
52 'common/csp_validator.h', | 51 'common/csp_validator.h', |
53 'common/dom_action_types.h', | 52 'common/dom_action_types.h', |
54 'common/draggable_region.cc', | 53 'common/draggable_region.cc', |
55 'common/draggable_region.h', | 54 'common/draggable_region.h', |
56 'common/error_utils.cc', | 55 'common/error_utils.cc', |
57 'common/error_utils.h', | 56 'common/error_utils.h', |
58 'common/event_filter.cc', | 57 'common/event_filter.cc', |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 'test/test_extensions_client.cc', | 600 'test/test_extensions_client.cc', |
602 'test/test_extensions_client.h', | 601 'test/test_extensions_client.h', |
603 'test/test_permission_message_provider.cc', | 602 'test/test_permission_message_provider.cc', |
604 'test/test_permission_message_provider.h', | 603 'test/test_permission_message_provider.h', |
605 'test/test_permissions_provider.cc', | 604 'test/test_permissions_provider.cc', |
606 'test/test_permissions_provider.h', | 605 'test/test_permissions_provider.h', |
607 ], | 606 ], |
608 }, | 607 }, |
609 ] | 608 ] |
610 } | 609 } |
OLD | NEW |