| 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 "chrome_browser_provider.h", | 7 "chrome_browser_provider.h", |
| 8 "chrome_browser_provider.mm", | 8 "chrome_browser_provider.mm", |
| 9 "geolocation_updater_provider.h", | 9 "geolocation_updater_provider.h", |
| 10 "geolocation_updater_provider.mm", | 10 "geolocation_updater_provider.mm", |
| 11 "signin/chrome_identity.h", | 11 "signin/chrome_identity.h", |
| 12 "signin/chrome_identity.mm", | 12 "signin/chrome_identity.mm", |
| 13 "signin/chrome_identity_service.h", | 13 "signin/chrome_identity_service.h", |
| 14 "signin/chrome_identity_service.mm", | 14 "signin/chrome_identity_service.mm", |
| 15 "signin/signin_error_provider.h", | 15 "signin/signin_error_provider.h", |
| 16 "signin/signin_error_provider.mm", | 16 "signin/signin_error_provider.mm", |
| 17 "string_provider.cc", | |
| 18 "string_provider.h", | |
| 19 "ui/default_ios_web_view_factory.h", | 17 "ui/default_ios_web_view_factory.h", |
| 20 "ui/default_ios_web_view_factory.mm", | 18 "ui/default_ios_web_view_factory.mm", |
| 21 "ui/infobar_view_delegate.h", | 19 "ui/infobar_view_delegate.h", |
| 22 "ui/infobar_view_protocol.h", | 20 "ui/infobar_view_protocol.h", |
| 23 "updatable_resource_provider.h", | 21 "updatable_resource_provider.h", |
| 24 "updatable_resource_provider.mm", | 22 "updatable_resource_provider.mm", |
| 25 ] | 23 ] |
| 26 | 24 |
| 27 deps = [ | 25 deps = [ |
| 28 "//base", | 26 "//base", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 44 "test_updatable_resource_provider.mm", | 42 "test_updatable_resource_provider.mm", |
| 45 ] | 43 ] |
| 46 | 44 |
| 47 deps = [ | 45 deps = [ |
| 48 ":browser", | 46 ":browser", |
| 49 "//base", | 47 "//base", |
| 50 "//components/signin/ios/browser:test_support", | 48 "//components/signin/ios/browser:test_support", |
| 51 "//testing/gtest", | 49 "//testing/gtest", |
| 52 ] | 50 ] |
| 53 } | 51 } |
| OLD | NEW |