blob: 7915c4963e01ffa5eb73b80872d5e22bc23c1587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2014 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.
assert(!is_ios)
source_set("factory") {
sources = [
"proto_database_provider_factory.cc",
"proto_database_provider_factory.h",
]
public_deps = [
"//base",
"//components/keyed_service/content",
]
deps = [
"//content/public/browser",
]
}
|