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
3 # found in the LICENSE file.
8 'target_name': 'extensions_common',
9 'type': 'static_library',
11 '../content/content.gyp:content_common',
12 '../third_party/re2/re2.gyp:re2',
16 '<(INTERMEDIATE_DIR)',
21 'common/draggable_region.cc',
22 'common/draggable_region.h',
23 'common/error_utils.cc',
24 'common/error_utils.h',
25 'common/event_filter.cc',
26 'common/event_filter.h',
27 'common/event_filtering_info.cc',
28 'common/event_filtering_info.h',
29 'common/event_matcher.cc',
30 'common/event_matcher.h',
31 'common/extension_paths.cc',
32 'common/extension_paths.h',
33 'common/extension_resource.cc',
34 'common/extension_resource.h',
35 'common/extension_urls.cc',
36 'common/extension_urls.h',
37 'common/extensions_client.cc',
38 'common/extensions_client.h',
39 'common/features/feature.cc',
40 'common/features/feature.h',
41 'common/features/feature_provider.cc',
42 'common/features/feature_provider.h',
45 'common/install_warning.cc',
46 'common/install_warning.h',
49 'common/manifest_constants.cc',
50 'common/manifest_constants.h',
51 'common/matcher/regex_set_matcher.cc',
52 'common/matcher/regex_set_matcher.h',
53 'common/matcher/string_pattern.cc',
54 'common/matcher/string_pattern.h',
55 'common/matcher/substring_set_matcher.cc',
56 'common/matcher/substring_set_matcher.h',
57 'common/matcher/url_matcher.cc',
58 'common/matcher/url_matcher.h',
59 'common/matcher/url_matcher_constants.cc',
60 'common/matcher/url_matcher_constants.h',
61 'common/matcher/url_matcher_factory.cc',
62 'common/matcher/url_matcher_factory.h',
63 'common/matcher/url_matcher_helpers.cc',
64 'common/matcher/url_matcher_helpers.h',
65 'common/one_shot_event.cc',
66 'common/one_shot_event.h',
67 'common/permissions/api_permission.cc',
68 'common/permissions/api_permission.h',
69 'common/permissions/api_permission_set.cc',
70 'common/permissions/api_permission_set.h',
71 'common/permissions/permission_message.cc',
72 'common/permissions/permission_message.h',
73 'common/permissions/permission_message_provider.cc',
74 'common/permissions/permission_message_provider.h',
75 'common/permissions/permissions_info.cc',
76 'common/permissions/permissions_info.h',
77 'common/permissions/permissions_provider.h',
78 'common/stack_frame.cc',
79 'common/stack_frame.h',
82 'common/url_pattern.cc',
83 'common/url_pattern.h',
84 'common/url_pattern_set.cc',
85 'common/url_pattern_set.h',
86 'common/user_script.cc',
87 'common/user_script.h',
88 'common/view_type.cc',
91 # Disable c4267 warnings until we fix size_t to int truncations.
92 'msvs_disabled_warnings': [ 4267, ],
95 'target_name': 'extensions_browser',
96 'type': 'static_library',
99 '../content/content.gyp:content_browser',
100 '../skia/skia.gyp:skia',
104 '<(INTERMEDIATE_DIR)',
107 'browser/extension_prefs_scope.h',
108 'browser/extension_error.cc',
109 'browser/extension_error.h',
110 'browser/file_highlighter.cc',
111 'browser/file_highlighter.h',
112 'browser/file_reader.cc',
113 'browser/file_reader.h',
114 'browser/pref_names.cc',
115 'browser/pref_names.h',
116 'browser/view_type_utils.cc',
117 'browser/view_type_utils.h',
119 # Disable c4267 warnings until we fix size_t to int truncations.
120 'msvs_disabled_warnings': [ 4267, ],