Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Side by Side Diff: chrome/chrome_common.gypi

Issue 10388135: Add common code for extensions event filtering. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to comments Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | chrome/common/extensions/event_matcher.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'common/content_settings_helper.h', 103 'common/content_settings_helper.h',
104 'common/content_settings_pattern.cc', 104 'common/content_settings_pattern.cc',
105 'common/content_settings_pattern.h', 105 'common/content_settings_pattern.h',
106 'common/content_settings_pattern_parser.cc', 106 'common/content_settings_pattern_parser.cc',
107 'common/content_settings_pattern_parser.h', 107 'common/content_settings_pattern_parser.h',
108 'common/content_settings_types.h', 108 'common/content_settings_types.h',
109 'common/custom_handlers/protocol_handler.cc', 109 'common/custom_handlers/protocol_handler.cc',
110 'common/custom_handlers/protocol_handler.h', 110 'common/custom_handlers/protocol_handler.h',
111 'common/extensions/csp_validator.cc', 111 'common/extensions/csp_validator.cc',
112 'common/extensions/csp_validator.h', 112 'common/extensions/csp_validator.h',
113 'common/extensions/event_filtering_info.cc',
114 'common/extensions/event_filtering_info.h',
115 'common/extensions/event_matcher.cc',
116 'common/extensions/event_matcher.h',
113 'common/extensions/extension.cc', 117 'common/extensions/extension.cc',
114 'common/extensions/extension.h', 118 'common/extensions/extension.h',
115 'common/extensions/extension_action.cc', 119 'common/extensions/extension_action.cc',
116 'common/extensions/extension_action.h', 120 'common/extensions/extension_action.h',
117 'common/extensions/extension_commands.cc', 121 'common/extensions/extension_commands.cc',
118 'common/extensions/extension_commands.h', 122 'common/extensions/extension_commands.h',
119 'common/extensions/extension_constants.cc', 123 'common/extensions/extension_constants.cc',
120 'common/extensions/extension_constants.h', 124 'common/extensions/extension_constants.h',
121 'common/extensions/extension_error_utils.cc', 125 'common/extensions/extension_error_utils.cc',
122 'common/extensions/extension_error_utils.h', 126 'common/extensions/extension_error_utils.h',
(...skipping 21 matching lines...) Expand all
144 'common/extensions/extension_set.h', 148 'common/extensions/extension_set.h',
145 'common/extensions/extension_switch_utils.cc', 149 'common/extensions/extension_switch_utils.cc',
146 'common/extensions/extension_switch_utils.h', 150 'common/extensions/extension_switch_utils.h',
147 'common/extensions/extension_unpacker.cc', 151 'common/extensions/extension_unpacker.cc',
148 'common/extensions/extension_unpacker.h', 152 'common/extensions/extension_unpacker.h',
149 'common/extensions/feature.cc', 153 'common/extensions/feature.cc',
150 'common/extensions/feature.h', 154 'common/extensions/feature.h',
151 'common/extensions/feature_provider.h', 155 'common/extensions/feature_provider.h',
152 'common/extensions/file_browser_handler.cc', 156 'common/extensions/file_browser_handler.cc',
153 'common/extensions/file_browser_handler.h', 157 'common/extensions/file_browser_handler.h',
158 'common/extensions/filtered_event_router.cc',
159 'common/extensions/filtered_event_router.h',
154 'common/extensions/manifest.cc', 160 'common/extensions/manifest.cc',
155 'common/extensions/manifest.h', 161 'common/extensions/manifest.h',
156 'common/extensions/manifest_feature.cc', 162 'common/extensions/manifest_feature.cc',
157 'common/extensions/manifest_feature.h', 163 'common/extensions/manifest_feature.h',
158 'common/extensions/matcher/substring_set_matcher.cc', 164 'common/extensions/matcher/substring_set_matcher.cc',
159 'common/extensions/matcher/substring_set_matcher.h', 165 'common/extensions/matcher/substring_set_matcher.h',
160 'common/extensions/matcher/url_matcher.cc', 166 'common/extensions/matcher/url_matcher.cc',
161 'common/extensions/matcher/url_matcher.h', 167 'common/extensions/matcher/url_matcher.h',
162 'common/extensions/matcher/url_matcher_constants.cc', 168 'common/extensions/matcher/url_matcher_constants.cc',
163 'common/extensions/matcher/url_matcher_constants.h', 169 'common/extensions/matcher/url_matcher_constants.h',
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 'common/metrics/proto/user_action_event.proto', 529 'common/metrics/proto/user_action_event.proto',
524 ], 530 ],
525 'variables': { 531 'variables': {
526 'proto_in_dir': 'common/metrics/proto', 532 'proto_in_dir': 'common/metrics/proto',
527 'proto_out_dir': 'chrome/common/metrics/proto', 533 'proto_out_dir': 'chrome/common/metrics/proto',
528 }, 534 },
529 'includes': [ '../build/protoc.gypi' ], 535 'includes': [ '../build/protoc.gypi' ],
530 }, 536 },
531 ], 537 ],
532 } 538 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | chrome/common/extensions/event_matcher.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698