mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
39 lines
996 B
Plaintext
39 lines
996 B
Plaintext
# Copyright 2016 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.
|
|
|
|
import("//extensions/buildflags/buildflags.gni")
|
|
|
|
assert(enable_extensions,
|
|
"Cannot depend on extensions because enable_extensions=false.")
|
|
|
|
source_set("storage") {
|
|
sources = [
|
|
"backend_task_runner.cc",
|
|
"backend_task_runner.h",
|
|
"local_value_store_cache.cc",
|
|
"local_value_store_cache.h",
|
|
"settings_namespace.cc",
|
|
"settings_namespace.h",
|
|
"settings_observer.h",
|
|
"settings_storage_quota_enforcer.cc",
|
|
"settings_storage_quota_enforcer.h",
|
|
"storage_api.cc",
|
|
"storage_api.h",
|
|
"storage_frontend.cc",
|
|
"storage_frontend.h",
|
|
"value_store_cache.cc",
|
|
"value_store_cache.h",
|
|
"weak_unlimited_settings_storage.cc",
|
|
"weak_unlimited_settings_storage.h",
|
|
]
|
|
|
|
deps = [
|
|
"//extensions/common/api",
|
|
]
|
|
|
|
public_deps = [
|
|
"//extensions/browser:browser_sources",
|
|
]
|
|
}
|