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

Side by Side Diff: extensions/extensions.gyp

Issue 189263013: Move extensions storage API implementation to src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase (move_storage) Created 6 years, 9 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 | « extensions/browser/api/storage/weak_unlimited_settings_storage.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'sources': [ 168 'sources': [
169 'browser/admin_policy.cc', 169 'browser/admin_policy.cc',
170 'browser/admin_policy.h', 170 'browser/admin_policy.h',
171 'browser/api/api_resource.cc', 171 'browser/api/api_resource.cc',
172 'browser/api/api_resource.h', 172 'browser/api/api_resource.h',
173 'browser/api/api_resource_manager.h', 173 'browser/api/api_resource_manager.h',
174 'browser/api/async_api_function.cc', 174 'browser/api/async_api_function.cc',
175 'browser/api/async_api_function.h', 175 'browser/api/async_api_function.h',
176 'browser/api/extensions_api_client.cc', 176 'browser/api/extensions_api_client.cc',
177 'browser/api/extensions_api_client.h', 177 'browser/api/extensions_api_client.h',
178 'browser/api/storage/leveldb_settings_storage_factory.cc',
179 'browser/api/storage/leveldb_settings_storage_factory.h',
180 'browser/api/storage/local_storage_backend.cc',
181 'browser/api/storage/local_storage_backend.h',
182 'browser/api/storage/local_value_store_cache.cc',
183 'browser/api/storage/local_value_store_cache.h',
184 'browser/api/storage/settings_backend.cc',
185 'browser/api/storage/settings_backend.h',
186 'browser/api/storage/settings_frontend.cc',
187 'browser/api/storage/settings_frontend.h',
178 'browser/api/storage/settings_namespace.cc', 188 'browser/api/storage/settings_namespace.cc',
179 'browser/api/storage/settings_namespace.h', 189 'browser/api/storage/settings_namespace.h',
190 'browser/api/storage/settings_observer.h',
191 'browser/api/storage/settings_storage_factory.h',
192 'browser/api/storage/settings_storage_quota_enforcer.cc',
193 'browser/api/storage/settings_storage_quota_enforcer.h',
194 'browser/api/storage/value_store_cache.cc',
195 'browser/api/storage/value_store_cache.h',
196 'browser/api/storage/weak_unlimited_settings_storage.cc',
197 'browser/api/storage/weak_unlimited_settings_storage.h',
180 'browser/api_activity_monitor.h', 198 'browser/api_activity_monitor.h',
181 'browser/app_sorting.h', 199 'browser/app_sorting.h',
182 'browser/blacklist_state.h', 200 'browser/blacklist_state.h',
183 'browser/browser_context_keyed_api_factory.h', 201 'browser/browser_context_keyed_api_factory.h',
184 'browser/error_map.cc', 202 'browser/error_map.cc',
185 'browser/error_map.h', 203 'browser/error_map.h',
186 'browser/event_listener_map.cc', 204 'browser/event_listener_map.cc',
187 'browser/event_listener_map.h', 205 'browser/event_listener_map.h',
188 'browser/event_router.cc', 206 'browser/event_router.cc',
189 'browser/event_router.h', 207 'browser/event_router.h',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 'common/test_util.cc', 304 'common/test_util.cc',
287 'common/test_util.h', 305 'common/test_util.h',
288 'common/value_builder.cc', 306 'common/value_builder.cc',
289 'common/value_builder.h', 307 'common/value_builder.h',
290 ], 308 ],
291 # Disable c4267 warnings until we fix size_t to int truncations. 309 # Disable c4267 warnings until we fix size_t to int truncations.
292 'msvs_disabled_warnings': [ 4267, ], 310 'msvs_disabled_warnings': [ 4267, ],
293 }, 311 },
294 ] 312 ]
295 } 313 }
OLDNEW
« no previous file with comments | « extensions/browser/api/storage/weak_unlimited_settings_storage.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698