| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("browser") { | 5 source_set("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "browser_constants.cc", | 7 "browser_constants.cc", |
| 8 "browser_constants.h", | 8 "browser_constants.h", |
| 9 "chrome_browser_provider.h", | 9 "chrome_browser_provider.h", |
| 10 "chrome_browser_provider.mm", | 10 "chrome_browser_provider.mm", |
| 11 "geolocation_updater_provider.h", | 11 "geolocation_updater_provider.h", |
| 12 "geolocation_updater_provider.mm", | 12 "geolocation_updater_provider.mm", |
| 13 "signin/chrome_identity.h", | 13 "signin/chrome_identity.h", |
| 14 "signin/chrome_identity.mm", | 14 "signin/chrome_identity.mm", |
| 15 "signin/chrome_identity_service.h", | 15 "signin/chrome_identity_service.h", |
| 16 "signin/chrome_identity_service.mm", | 16 "signin/chrome_identity_service.mm", |
| 17 "signin/signin_error_provider.h", | 17 "signin/signin_error_provider.h", |
| 18 "signin/signin_error_provider.mm", | 18 "signin/signin_error_provider.mm", |
| 19 "ui/default_ios_web_view_factory.h", | 19 "ui/default_ios_web_view_factory.h", |
| 20 "ui/default_ios_web_view_factory.mm", | 20 "ui/default_ios_web_view_factory.mm", |
| 21 "ui/infobar_view_delegate.h", | 21 "ui/infobar_view_delegate.h", |
| 22 "ui/infobar_view_protocol.h", | 22 "ui/infobar_view_protocol.h", |
| 23 "updatable_resource_provider.h", | 23 "updatable_resource_provider.h", |
| 24 "updatable_resource_provider.mm", | 24 "updatable_resource_provider.mm", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 deps = [ | 27 deps = [ |
| 28 "//base", | 28 "//base", |
| 29 "//components/autofill/core/browser", | 29 "//components/autofill/core/browser", |
| 30 "//components/favicon_base", | |
| 31 "//components/metrics", | |
| 32 "//components/sync_sessions", | |
| 33 "//ios/public/provider/web", | 30 "//ios/public/provider/web", |
| 34 "//ios/web", | 31 "//ios/web", |
| 35 ] | 32 ] |
| 36 } | 33 } |
| 37 | 34 |
| 38 source_set("test_support") { | 35 source_set("test_support") { |
| 39 testonly = true | 36 testonly = true |
| 40 | 37 |
| 41 sources = [ | 38 sources = [ |
| 42 "test_chrome_browser_provider.h", | 39 "test_chrome_browser_provider.h", |
| 43 "test_chrome_browser_provider.mm", | 40 "test_chrome_browser_provider.mm", |
| 44 "test_chrome_provider_initializer.h", | 41 "test_chrome_provider_initializer.h", |
| 45 "test_chrome_provider_initializer.mm", | 42 "test_chrome_provider_initializer.mm", |
| 46 "test_updatable_resource_provider.h", | 43 "test_updatable_resource_provider.h", |
| 47 "test_updatable_resource_provider.mm", | 44 "test_updatable_resource_provider.mm", |
| 48 ] | 45 ] |
| 49 | 46 |
| 50 deps = [ | 47 deps = [ |
| 51 ":browser", | 48 ":browser", |
| 52 "//base", | 49 "//base", |
| 53 "//components/signin/ios/browser:test_support", | 50 "//components/signin/ios/browser:test_support", |
| 54 "//testing/gtest", | 51 "//testing/gtest", |
| 55 ] | 52 ] |
| 56 } | 53 } |
| OLD | NEW |