blob: 19718bf266410e5daf3c48376c408f77107221ea [file] [log] [blame]
# 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.
source_set("lib") {
sources = [
"file_service.cc",
"file_service.h",
"file_system.cc",
"file_system.h",
"user_id_map.cc",
"user_id_map.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [
"//base",
"//components/services/filesystem:lib",
"//components/services/filesystem/public/interfaces",
"//components/services/leveldb:lib",
"//components/services/leveldb/public/interfaces",
"//mojo/public/cpp/bindings",
"//services/file/public/mojom",
"//services/service_manager/public/cpp",
"//services/service_manager/public/mojom",
"//url",
]
}