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

Side by Side Diff: extensions/browser/api/storage/BUILD.gn

Issue 2965153002: Migrate Extensions code to Task Scheduler API (Closed)
Patch Set: Self review Created 3 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import("//extensions/features/features.gni") 5 import("//extensions/features/features.gni")
6 6
7 assert(enable_extensions, 7 assert(enable_extensions,
8 "Cannot depend on extensions because enable_extensions=false.") 8 "Cannot depend on extensions because enable_extensions=false.")
9 9
10 source_set("storage") { 10 source_set("storage") {
11 sources = [ 11 sources = [
12 "backend_task_runner.cc",
13 "backend_task_runner.h",
12 "local_value_store_cache.cc", 14 "local_value_store_cache.cc",
13 "local_value_store_cache.h", 15 "local_value_store_cache.h",
14 "settings_namespace.cc", 16 "settings_namespace.cc",
15 "settings_namespace.h", 17 "settings_namespace.h",
16 "settings_observer.h", 18 "settings_observer.h",
17 "settings_storage_quota_enforcer.cc", 19 "settings_storage_quota_enforcer.cc",
18 "settings_storage_quota_enforcer.h", 20 "settings_storage_quota_enforcer.h",
19 "storage_api.cc", 21 "storage_api.cc",
20 "storage_api.h", 22 "storage_api.h",
21 "storage_frontend.cc", 23 "storage_frontend.cc",
22 "storage_frontend.h", 24 "storage_frontend.h",
23 "value_store_cache.cc", 25 "value_store_cache.cc",
24 "value_store_cache.h", 26 "value_store_cache.h",
25 "weak_unlimited_settings_storage.cc", 27 "weak_unlimited_settings_storage.cc",
26 "weak_unlimited_settings_storage.h", 28 "weak_unlimited_settings_storage.h",
27 ] 29 ]
28 30
29 deps = [ 31 deps = [
30 "//extensions/common/api", 32 "//extensions/common/api",
31 ] 33 ]
32 34
33 public_deps = [ 35 public_deps = [
34 "//extensions/browser:browser_sources", 36 "//extensions/browser:browser_sources",
35 ] 37 ]
36 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698