| 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_state/chrome_browser_state.cc", | |
| 8 "browser_state/chrome_browser_state.h", | |
| 9 "browser_state/chrome_browser_state_manager.h", | 7 "browser_state/chrome_browser_state_manager.h", |
| 10 "chrome_browser_provider.cc", | 8 "chrome_browser_provider.cc", |
| 11 "chrome_browser_provider.h", | 9 "chrome_browser_provider.h", |
| 12 "geolocation_updater_provider.h", | 10 "geolocation_updater_provider.h", |
| 13 "geolocation_updater_provider.mm", | 11 "geolocation_updater_provider.mm", |
| 14 "signin/chrome_identity.h", | 12 "signin/chrome_identity.h", |
| 15 "signin/chrome_identity.mm", | 13 "signin/chrome_identity.mm", |
| 16 "signin/chrome_identity_service.h", | 14 "signin/chrome_identity_service.h", |
| 17 "signin/chrome_identity_service.mm", | 15 "signin/chrome_identity_service.mm", |
| 18 "signin/signin_error_provider.h", | 16 "signin/signin_error_provider.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 45 "test_updatable_resource_provider.mm", | 43 "test_updatable_resource_provider.mm", |
| 46 ] | 44 ] |
| 47 | 45 |
| 48 deps = [ | 46 deps = [ |
| 49 ":browser", | 47 ":browser", |
| 50 "//base", | 48 "//base", |
| 51 "//components/signin/ios/browser:test_support", | 49 "//components/signin/ios/browser:test_support", |
| 52 "//testing/gtest", | 50 "//testing/gtest", |
| 53 ] | 51 ] |
| 54 } | 52 } |
| OLD | NEW |