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("browser") { |
| 6 sources = [ |
| 7 "browser_state/chrome_browser_state.cc", |
| 8 "browser_state/chrome_browser_state.h", |
| 9 "browser_state/chrome_browser_state_manager.h", |
| 10 "chrome_browser_provider.cc", |
| 11 "chrome_browser_provider.h", |
| 12 "geolocation_updater_provider.h", |
| 13 "geolocation_updater_provider.mm", |
| 14 "keyed_service_provider.cc", |
| 15 "keyed_service_provider.h", |
| 16 "signin/chrome_identity.h", |
| 17 "signin/chrome_identity.mm", |
| 18 "signin/chrome_identity_service.h", |
| 19 "signin/chrome_identity_service.mm", |
| 20 "signin/signin_error_provider.h", |
| 21 "signin/signin_error_provider.mm", |
| 22 "string_provider.h", |
| 23 "ui/infobar_view_delegate.h", |
| 24 "ui/infobar_view_protocol.h", |
| 25 "updatable_resource_provider.h", |
| 26 "updatable_resource_provider.mm", |
| 27 ] |
| 28 |
| 29 deps = [ |
| 30 "//base", |
| 31 "//components/autofill/core/browser", |
| 32 "//ios/public/provider/web", |
| 33 "//ios/web", |
| 34 ] |
| 35 } |
OLD | NEW |