| 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", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "distribution/test_app_distribution_provider.h", | 85 "distribution/test_app_distribution_provider.h", |
| 86 "distribution/test_app_distribution_provider.mm", | 86 "distribution/test_app_distribution_provider.mm", |
| 87 "omaha/test_omaha_service_provider.h", | 87 "omaha/test_omaha_service_provider.h", |
| 88 "omaha/test_omaha_service_provider.mm", | 88 "omaha/test_omaha_service_provider.mm", |
| 89 "signin/fake_chrome_identity.h", | 89 "signin/fake_chrome_identity.h", |
| 90 "signin/fake_chrome_identity.mm", | 90 "signin/fake_chrome_identity.mm", |
| 91 "signin/fake_chrome_identity_interaction_manager.h", | 91 "signin/fake_chrome_identity_interaction_manager.h", |
| 92 "signin/fake_chrome_identity_interaction_manager.mm", | 92 "signin/fake_chrome_identity_interaction_manager.mm", |
| 93 "signin/fake_chrome_identity_service.h", | 93 "signin/fake_chrome_identity_service.h", |
| 94 "signin/fake_chrome_identity_service.mm", | 94 "signin/fake_chrome_identity_service.mm", |
| 95 "signin/test_signin_resources_provider.h", |
| 96 "signin/test_signin_resources_provider.mm", |
| 95 "test_chrome_browser_provider.h", | 97 "test_chrome_browser_provider.h", |
| 96 "test_chrome_browser_provider.mm", | 98 "test_chrome_browser_provider.mm", |
| 97 "test_chrome_provider_initializer.h", | 99 "test_chrome_provider_initializer.h", |
| 98 "test_chrome_provider_initializer.mm", | 100 "test_chrome_provider_initializer.mm", |
| 99 "voice/test_voice_search_provider.h", | 101 "voice/test_voice_search_provider.h", |
| 100 "voice/test_voice_search_provider.mm", | 102 "voice/test_voice_search_provider.mm", |
| 101 ] | 103 ] |
| 102 | 104 |
| 103 deps = [ | 105 deps = [ |
| 104 ":browser", | 106 ":browser", |
| 105 "//base", | 107 "//base", |
| 106 "//components/signin/ios/browser:test_support", | 108 "//components/signin/ios/browser:test_support", |
| 107 "//testing/gtest", | 109 "//testing/gtest", |
| 108 ] | 110 ] |
| 109 public_deps = [ | 111 public_deps = [ |
| 110 "//testing/gmock", | 112 "//testing/gmock", |
| 111 ] | 113 ] |
| 112 } | 114 } |
| OLD | NEW |