| 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 "omaha/omaha_service_provider.h", |
| 17 "omaha/omaha_service_provider.mm", |
| 16 "signin/chrome_identity.h", | 18 "signin/chrome_identity.h", |
| 17 "signin/chrome_identity.mm", | 19 "signin/chrome_identity.mm", |
| 18 "signin/chrome_identity_browser_opener.h", | 20 "signin/chrome_identity_browser_opener.h", |
| 19 "signin/chrome_identity_interaction_manager.h", | 21 "signin/chrome_identity_interaction_manager.h", |
| 20 "signin/chrome_identity_interaction_manager.mm", | 22 "signin/chrome_identity_interaction_manager.mm", |
| 21 "signin/chrome_identity_service.h", | 23 "signin/chrome_identity_service.h", |
| 22 "signin/chrome_identity_service.mm", | 24 "signin/chrome_identity_service.mm", |
| 23 "signin/signin_error_provider.h", | 25 "signin/signin_error_provider.h", |
| 24 "signin/signin_error_provider.mm", | 26 "signin/signin_error_provider.mm", |
| 25 "signin/signin_resources_provider.h", | 27 "signin/signin_resources_provider.h", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 header = "provider_flags.h" | 75 header = "provider_flags.h" |
| 74 flags = [ "USE_IOS_INTERNAL_PROVIDER=$use_ios_internal_provider" ] | 76 flags = [ "USE_IOS_INTERNAL_PROVIDER=$use_ios_internal_provider" ] |
| 75 } | 77 } |
| 76 | 78 |
| 77 source_set("test_support") { | 79 source_set("test_support") { |
| 78 testonly = true | 80 testonly = true |
| 79 | 81 |
| 80 sources = [ | 82 sources = [ |
| 81 "distribution/test_app_distribution_provider.h", | 83 "distribution/test_app_distribution_provider.h", |
| 82 "distribution/test_app_distribution_provider.mm", | 84 "distribution/test_app_distribution_provider.mm", |
| 85 "omaha/test_omaha_service_provider.h", |
| 86 "omaha/test_omaha_service_provider.mm", |
| 83 "signin/fake_chrome_identity.h", | 87 "signin/fake_chrome_identity.h", |
| 84 "signin/fake_chrome_identity.mm", | 88 "signin/fake_chrome_identity.mm", |
| 85 "signin/fake_chrome_identity_interaction_manager.h", | 89 "signin/fake_chrome_identity_interaction_manager.h", |
| 86 "signin/fake_chrome_identity_interaction_manager.mm", | 90 "signin/fake_chrome_identity_interaction_manager.mm", |
| 87 "signin/fake_chrome_identity_service.h", | 91 "signin/fake_chrome_identity_service.h", |
| 88 "signin/fake_chrome_identity_service.mm", | 92 "signin/fake_chrome_identity_service.mm", |
| 89 "test_chrome_browser_provider.h", | 93 "test_chrome_browser_provider.h", |
| 90 "test_chrome_browser_provider.mm", | 94 "test_chrome_browser_provider.mm", |
| 91 "test_chrome_provider_initializer.h", | 95 "test_chrome_provider_initializer.h", |
| 92 "test_chrome_provider_initializer.mm", | 96 "test_chrome_provider_initializer.mm", |
| 93 "test_updatable_resource_provider.h", | 97 "test_updatable_resource_provider.h", |
| 94 "test_updatable_resource_provider.mm", | 98 "test_updatable_resource_provider.mm", |
| 95 "voice/test_voice_search_provider.h", | 99 "voice/test_voice_search_provider.h", |
| 96 "voice/test_voice_search_provider.mm", | 100 "voice/test_voice_search_provider.mm", |
| 97 ] | 101 ] |
| 98 | 102 |
| 99 deps = [ | 103 deps = [ |
| 100 ":browser", | 104 ":browser", |
| 101 "//base", | 105 "//base", |
| 102 "//components/signin/ios/browser:test_support", | 106 "//components/signin/ios/browser:test_support", |
| 103 "//testing/gmock", | 107 "//testing/gmock", |
| 104 "//testing/gtest", | 108 "//testing/gtest", |
| 105 ] | 109 ] |
| 106 } | 110 } |
| OLD | NEW |