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

Side by Side Diff: chrome/chrome_common.gypi

Issue 10704060: Move ExtensionUnpacker into extensions:: namespace, rename it to Unpacker (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Even later master Created 8 years, 5 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
« no previous file with comments | « chrome/browser/extensions/sandboxed_unpacker_unittest.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 'common/extensions/extension_messages.cc', 143 'common/extensions/extension_messages.cc',
144 'common/extensions/extension_messages.h', 144 'common/extensions/extension_messages.h',
145 'common/extensions/extension_process_policy.cc', 145 'common/extensions/extension_process_policy.cc',
146 'common/extensions/extension_process_policy.h', 146 'common/extensions/extension_process_policy.h',
147 'common/extensions/extension_resource.cc', 147 'common/extensions/extension_resource.cc',
148 'common/extensions/extension_resource.h', 148 'common/extensions/extension_resource.h',
149 'common/extensions/extension_set.cc', 149 'common/extensions/extension_set.cc',
150 'common/extensions/extension_set.h', 150 'common/extensions/extension_set.h',
151 'common/extensions/extension_switch_utils.cc', 151 'common/extensions/extension_switch_utils.cc',
152 'common/extensions/extension_switch_utils.h', 152 'common/extensions/extension_switch_utils.h',
153 'common/extensions/extension_unpacker.cc',
154 'common/extensions/extension_unpacker.h',
155 'common/extensions/features/feature.cc', 153 'common/extensions/features/feature.cc',
156 'common/extensions/features/feature.h', 154 'common/extensions/features/feature.h',
157 'common/extensions/features/feature_provider.h', 155 'common/extensions/features/feature_provider.h',
158 'common/extensions/features/manifest_feature.cc', 156 'common/extensions/features/manifest_feature.cc',
159 'common/extensions/features/manifest_feature.h', 157 'common/extensions/features/manifest_feature.h',
160 'common/extensions/features/permission_feature.cc', 158 'common/extensions/features/permission_feature.cc',
161 'common/extensions/features/permission_feature.h', 159 'common/extensions/features/permission_feature.h',
162 'common/extensions/features/simple_feature_provider.cc', 160 'common/extensions/features/simple_feature_provider.cc',
163 'common/extensions/features/simple_feature_provider.h', 161 'common/extensions/features/simple_feature_provider.h',
164 'common/extensions/file_browser_handler.cc', 162 'common/extensions/file_browser_handler.cc',
(...skipping 11 matching lines...) Expand all
176 'common/extensions/matcher/url_matcher_helpers.cc', 174 'common/extensions/matcher/url_matcher_helpers.cc',
177 'common/extensions/matcher/url_matcher_helpers.h', 175 'common/extensions/matcher/url_matcher_helpers.h',
178 'common/extensions/permissions/api_permission.cc', 176 'common/extensions/permissions/api_permission.cc',
179 'common/extensions/permissions/api_permission.h', 177 'common/extensions/permissions/api_permission.h',
180 'common/extensions/permissions/permission_message.cc', 178 'common/extensions/permissions/permission_message.cc',
181 'common/extensions/permissions/permission_message.h', 179 'common/extensions/permissions/permission_message.h',
182 'common/extensions/permissions/permission_set.cc', 180 'common/extensions/permissions/permission_set.cc',
183 'common/extensions/permissions/permission_set.h', 181 'common/extensions/permissions/permission_set.h',
184 'common/extensions/permissions/permissions_info.cc', 182 'common/extensions/permissions/permissions_info.cc',
185 'common/extensions/permissions/permissions_info.h', 183 'common/extensions/permissions/permissions_info.h',
184 'common/extensions/unpacker.cc',
185 'common/extensions/unpacker.h',
186 'common/extensions/update_manifest.cc', 186 'common/extensions/update_manifest.cc',
187 'common/extensions/update_manifest.h', 187 'common/extensions/update_manifest.h',
188 'common/extensions/url_pattern.cc', 188 'common/extensions/url_pattern.cc',
189 'common/extensions/url_pattern.h', 189 'common/extensions/url_pattern.h',
190 'common/extensions/url_pattern_set.cc', 190 'common/extensions/url_pattern_set.cc',
191 'common/extensions/url_pattern_set.h', 191 'common/extensions/url_pattern_set.h',
192 'common/extensions/user_script.cc', 192 'common/extensions/user_script.cc',
193 'common/extensions/user_script.h', 193 'common/extensions/user_script.h',
194 'common/extensions/value_counter.cc', 194 'common/extensions/value_counter.cc',
195 'common/extensions/value_counter.h', 195 'common/extensions/value_counter.h',
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 'common/metrics/proto/user_action_event.proto', 535 'common/metrics/proto/user_action_event.proto',
536 ], 536 ],
537 'variables': { 537 'variables': {
538 'proto_in_dir': 'common/metrics/proto', 538 'proto_in_dir': 'common/metrics/proto',
539 'proto_out_dir': 'chrome/common/metrics/proto', 539 'proto_out_dir': 'chrome/common/metrics/proto',
540 }, 540 },
541 'includes': [ '../build/protoc.gypi' ], 541 'includes': [ '../build/protoc.gypi' ],
542 }, 542 },
543 ], 543 ],
544 } 544 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/sandboxed_unpacker_unittest.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698