summaryrefslogtreecommitdiff
path: root/extensions/extensions.gyp
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2013-09-26 13:24:57 +0100
committerTorne (Richard Coles) <torne@google.com>2013-09-26 13:24:57 +0100
commit68043e1e95eeb07d5cae7aca370b26518b0867d6 (patch)
treecc6a216bce6aa9319a216327b73a07f49200dab5 /extensions/extensions.gyp
parentcede44592cfb9ec370925d10c2df733349a94a82 (diff)
downloadchromium_org-68043e1e95eeb07d5cae7aca370b26518b0867d6.tar.gz
Merge from Chromium at DEPS revision 225410
This commit was generated by merge_to_master.py. Change-Id: Ifa1539ca216abb163295ee7a77f81bb67f52e178
Diffstat (limited to 'extensions/extensions.gyp')
-rw-r--r--extensions/extensions.gyp113
1 files changed, 113 insertions, 0 deletions
diff --git a/extensions/extensions.gyp b/extensions/extensions.gyp
new file mode 100644
index 0000000000..ebcdbfa8c9
--- /dev/null
+++ b/extensions/extensions.gyp
@@ -0,0 +1,113 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'extensions_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../content/content.gyp:content_common',
+ '../third_party/re2/re2.gyp:re2',
+ ],
+ 'include_dirs': [
+ '..',
+ '<(INTERMEDIATE_DIR)',
+ ],
+ 'sources': [
+ 'common/crx_file.cc',
+ 'common/crx_file.h',
+ 'common/draggable_region.cc',
+ 'common/draggable_region.h',
+ 'common/error_utils.cc',
+ 'common/error_utils.h',
+ 'common/event_filter.cc',
+ 'common/event_filter.h',
+ 'common/event_filtering_info.cc',
+ 'common/event_filtering_info.h',
+ 'common/event_matcher.cc',
+ 'common/event_matcher.h',
+ 'common/extension_paths.cc',
+ 'common/extension_paths.h',
+ 'common/extension_resource.cc',
+ 'common/extension_resource.h',
+ 'common/extension_urls.cc',
+ 'common/extension_urls.h',
+ 'common/extensions_client.cc',
+ 'common/extensions_client.h',
+ 'common/features/feature.cc',
+ 'common/features/feature.h',
+ 'common/features/feature_provider.cc',
+ 'common/features/feature_provider.h',
+ 'common/id_util.cc',
+ 'common/id_util.h',
+ 'common/install_warning.cc',
+ 'common/install_warning.h',
+ 'common/manifest.cc',
+ 'common/manifest.h',
+ 'common/manifest_constants.cc',
+ 'common/manifest_constants.h',
+ 'common/matcher/regex_set_matcher.cc',
+ 'common/matcher/regex_set_matcher.h',
+ 'common/matcher/string_pattern.cc',
+ 'common/matcher/string_pattern.h',
+ 'common/matcher/substring_set_matcher.cc',
+ 'common/matcher/substring_set_matcher.h',
+ 'common/matcher/url_matcher.cc',
+ 'common/matcher/url_matcher.h',
+ 'common/matcher/url_matcher_constants.cc',
+ 'common/matcher/url_matcher_constants.h',
+ 'common/matcher/url_matcher_factory.cc',
+ 'common/matcher/url_matcher_factory.h',
+ 'common/matcher/url_matcher_helpers.cc',
+ 'common/matcher/url_matcher_helpers.h',
+ 'common/one_shot_event.cc',
+ 'common/one_shot_event.h',
+ 'common/permissions/permissions_provider.h',
+ 'common/stack_frame.cc',
+ 'common/stack_frame.h',
+ 'common/switches.cc',
+ 'common/switches.h',
+ 'common/url_pattern.cc',
+ 'common/url_pattern.h',
+ 'common/url_pattern_set.cc',
+ 'common/url_pattern_set.h',
+ 'common/user_script.cc',
+ 'common/user_script.h',
+ 'common/view_type.cc',
+ 'common/view_type.h',
+ ],
+ # Disable c4267 warnings until we fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, ],
+ },
+ {
+ 'target_name': 'extensions_browser',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'extensions_common',
+ '../content/content.gyp:content_browser',
+ '../skia/skia.gyp:skia',
+ ],
+ 'include_dirs': [
+ '..',
+ '<(INTERMEDIATE_DIR)',
+ ],
+ 'sources': [
+ 'browser/extension_prefs_scope.h',
+ 'browser/extension_error.cc',
+ 'browser/extension_error.h',
+ 'browser/file_highlighter.cc',
+ 'browser/file_highlighter.h',
+ 'browser/file_reader.cc',
+ 'browser/file_reader.h',
+ 'browser/pref_names.cc',
+ 'browser/pref_names.h',
+ 'browser/view_type_utils.cc',
+ 'browser/view_type_utils.h',
+ ],
+ # Disable c4267 warnings until we fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, ],
+ },
+ ]
+}