| 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//ios/public/provider/chrome/browser/build_config.gni") | 6 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 7 | 7 |
| 8 source_set("browser") { | 8 source_set("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "chrome_browser_provider.h", | 10 "chrome_browser_provider.h", |
| 11 "chrome_browser_provider.mm", | 11 "chrome_browser_provider.mm", |
| 12 "distribution/app_distribution_provider.h", | 12 "distribution/app_distribution_provider.h", |
| 13 "distribution/app_distribution_provider.mm", | 13 "distribution/app_distribution_provider.mm", |
| 14 "geolocation_updater_provider.h", | 14 "geolocation_updater_provider.h", |
| 15 "geolocation_updater_provider.mm", | 15 "geolocation_updater_provider.mm", |
| 16 "native_app_launcher/native_app_types.h", |
| 16 "omaha/omaha_service_provider.h", | 17 "omaha/omaha_service_provider.h", |
| 17 "omaha/omaha_service_provider.mm", | 18 "omaha/omaha_service_provider.mm", |
| 18 "signin/chrome_identity.h", | 19 "signin/chrome_identity.h", |
| 19 "signin/chrome_identity.mm", | 20 "signin/chrome_identity.mm", |
| 20 "signin/chrome_identity_browser_opener.h", | 21 "signin/chrome_identity_browser_opener.h", |
| 21 "signin/chrome_identity_interaction_manager.h", | 22 "signin/chrome_identity_interaction_manager.h", |
| 22 "signin/chrome_identity_interaction_manager.mm", | 23 "signin/chrome_identity_interaction_manager.mm", |
| 23 "signin/chrome_identity_service.h", | 24 "signin/chrome_identity_service.h", |
| 24 "signin/chrome_identity_service.mm", | 25 "signin/chrome_identity_service.mm", |
| 25 "signin/signin_error_provider.h", | 26 "signin/signin_error_provider.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 deps = [ | 105 deps = [ |
| 105 ":browser", | 106 ":browser", |
| 106 "//base", | 107 "//base", |
| 107 "//components/signin/ios/browser:test_support", | 108 "//components/signin/ios/browser:test_support", |
| 108 "//testing/gtest", | 109 "//testing/gtest", |
| 109 ] | 110 ] |
| 110 public_deps = [ | 111 public_deps = [ |
| 111 "//testing/gmock", | 112 "//testing/gmock", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| OLD | NEW |