blob: 2e5638d8d89862153482d3c7b69a959a8a33fe51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2015 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("ios") {
sources = [
"browser_state_dependency_manager.cc",
"browser_state_dependency_manager.h",
"browser_state_keyed_service_factory.cc",
"browser_state_keyed_service_factory.h",
"refcounted_browser_state_keyed_service_factory.cc",
"refcounted_browser_state_keyed_service_factory.h",
]
deps = [
"//base",
"//base/third_party/dynamic_annotations",
"//components/keyed_service/core",
"//ios/web",
]
defines = [ "KEYED_SERVICE_IMPLEMENTATION" ]
}
|