blob: 39bae1c6daeb1e75a92833644c656eefb4151f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 2020 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.
static_library("storage") {
sources = [
"prepare_directory_task.cc",
"prepare_directory_task.h",
"store_file_task.cc",
"store_file_task.h",
"store_files_task.cc",
"store_files_task.h",
]
deps = [
"//content/public/browser",
"//mojo/public/cpp/bindings",
]
public_deps = [
"//base",
"//third_party/blink/public/common",
]
}
|