OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("ios") { |
| 6 sources = [ |
| 7 "browser_state_context_converter.cc", |
| 8 "browser_state_context_converter.h", |
| 9 "browser_state_dependency_manager.cc", |
| 10 "browser_state_dependency_manager.h", |
| 11 "browser_state_keyed_service_factory.cc", |
| 12 "browser_state_keyed_service_factory.h", |
| 13 "refcounted_browser_state_keyed_service_factory.cc", |
| 14 "refcounted_browser_state_keyed_service_factory.h", |
| 15 ] |
| 16 |
| 17 deps = [ |
| 18 "//base", |
| 19 "//base/third_party/dynamic_annotations", |
| 20 "//components/keyed_service/core", |
| 21 "//ios/web", |
| 22 ] |
| 23 |
| 24 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ] |
| 25 } |
OLD | NEW |