| 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 28 matching lines...) Expand all Loading... |
| 54 ] | 56 ] |
| 55 | 57 |
| 56 deps = [ | 58 deps = [ |
| 57 "//base", | 59 "//base", |
| 58 "//components/autofill/core/browser", | 60 "//components/autofill/core/browser", |
| 59 "//components/favicon_base", | 61 "//components/favicon_base", |
| 60 "//components/metrics", | 62 "//components/metrics", |
| 61 "//components/sync_sessions", | 63 "//components/sync_sessions", |
| 62 "//ios/public/provider/web", | 64 "//ios/public/provider/web", |
| 63 "//ios/web", | 65 "//ios/web", |
| 66 "//url", |
| 64 ] | 67 ] |
| 65 | 68 |
| 66 libs = [ | 69 libs = [ |
| 67 "CoreGraphics.framework", | 70 "CoreGraphics.framework", |
| 68 "CoreLocation.framework", | 71 "CoreLocation.framework", |
| 69 ] | 72 ] |
| 70 } | 73 } |
| 71 | 74 |
| 72 buildflag_header("provider_flags") { | 75 buildflag_header("provider_flags") { |
| 73 header = "provider_flags.h" | 76 header = "provider_flags.h" |
| 74 flags = [ "USE_IOS_INTERNAL_PROVIDER=$use_ios_internal_provider" ] | 77 flags = [ "USE_IOS_INTERNAL_PROVIDER=$use_ios_internal_provider" ] |
| 75 } | 78 } |
| 76 | 79 |
| 77 source_set("test_support") { | 80 source_set("test_support") { |
| 78 testonly = true | 81 testonly = true |
| 79 | 82 |
| 80 sources = [ | 83 sources = [ |
| 81 "distribution/test_app_distribution_provider.h", | 84 "distribution/test_app_distribution_provider.h", |
| 82 "distribution/test_app_distribution_provider.mm", | 85 "distribution/test_app_distribution_provider.mm", |
| 86 "omaha/test_omaha_service_provider.h", |
| 87 "omaha/test_omaha_service_provider.mm", |
| 83 "signin/fake_chrome_identity.h", | 88 "signin/fake_chrome_identity.h", |
| 84 "signin/fake_chrome_identity.mm", | 89 "signin/fake_chrome_identity.mm", |
| 85 "signin/fake_chrome_identity_interaction_manager.h", | 90 "signin/fake_chrome_identity_interaction_manager.h", |
| 86 "signin/fake_chrome_identity_interaction_manager.mm", | 91 "signin/fake_chrome_identity_interaction_manager.mm", |
| 87 "signin/fake_chrome_identity_service.h", | 92 "signin/fake_chrome_identity_service.h", |
| 88 "signin/fake_chrome_identity_service.mm", | 93 "signin/fake_chrome_identity_service.mm", |
| 89 "test_chrome_browser_provider.h", | 94 "test_chrome_browser_provider.h", |
| 90 "test_chrome_browser_provider.mm", | 95 "test_chrome_browser_provider.mm", |
| 91 "test_chrome_provider_initializer.h", | 96 "test_chrome_provider_initializer.h", |
| 92 "test_chrome_provider_initializer.mm", | 97 "test_chrome_provider_initializer.mm", |
| 93 "test_updatable_resource_provider.h", | 98 "test_updatable_resource_provider.h", |
| 94 "test_updatable_resource_provider.mm", | 99 "test_updatable_resource_provider.mm", |
| 95 "voice/test_voice_search_provider.h", | 100 "voice/test_voice_search_provider.h", |
| 96 "voice/test_voice_search_provider.mm", | 101 "voice/test_voice_search_provider.mm", |
| 97 ] | 102 ] |
| 98 | 103 |
| 99 deps = [ | 104 deps = [ |
| 100 ":browser", | 105 ":browser", |
| 101 "//base", | 106 "//base", |
| 102 "//components/signin/ios/browser:test_support", | 107 "//components/signin/ios/browser:test_support", |
| 103 "//testing/gmock", | 108 "//testing/gmock", |
| 104 "//testing/gtest", | 109 "//testing/gtest", |
| 105 ] | 110 ] |
| 106 } | 111 } |
| OLD | NEW |