| 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 "browser_constants.cc", | 10 "browser_constants.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "signin/signin_resources_provider.h", | 25 "signin/signin_resources_provider.h", |
| 26 "signin/signin_resources_provider.mm", | 26 "signin/signin_resources_provider.mm", |
| 27 "ui/app_rating_prompt.h", | 27 "ui/app_rating_prompt.h", |
| 28 "ui/default_ios_web_view_factory.h", | 28 "ui/default_ios_web_view_factory.h", |
| 29 "ui/default_ios_web_view_factory.mm", | 29 "ui/default_ios_web_view_factory.mm", |
| 30 "ui/infobar_view_delegate.h", | 30 "ui/infobar_view_delegate.h", |
| 31 "ui/infobar_view_protocol.h", | 31 "ui/infobar_view_protocol.h", |
| 32 "ui/text_field_styling.h", | 32 "ui/text_field_styling.h", |
| 33 "updatable_resource_provider.h", | 33 "updatable_resource_provider.h", |
| 34 "updatable_resource_provider.mm", | 34 "updatable_resource_provider.mm", |
| 35 "voice/audio_session_controller.h", |
| 35 "voice/voice_search_language.h", | 36 "voice/voice_search_language.h", |
| 36 "voice/voice_search_language.mm", | 37 "voice/voice_search_language.mm", |
| 38 "voice/voice_search_provider.h", |
| 39 "voice/voice_search_provider.mm", |
| 37 ] | 40 ] |
| 38 | 41 |
| 39 public_deps = [ | 42 public_deps = [ |
| 40 ":provider_flags", | 43 ":provider_flags", |
| 41 ] | 44 ] |
| 42 | 45 |
| 43 deps = [ | 46 deps = [ |
| 44 "//base", | 47 "//base", |
| 45 "//components/autofill/core/browser", | 48 "//components/autofill/core/browser", |
| 46 "//components/favicon_base", | 49 "//components/favicon_base", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 65 "signin/fake_chrome_identity_interaction_manager.h", | 68 "signin/fake_chrome_identity_interaction_manager.h", |
| 66 "signin/fake_chrome_identity_interaction_manager.mm", | 69 "signin/fake_chrome_identity_interaction_manager.mm", |
| 67 "signin/fake_chrome_identity_service.h", | 70 "signin/fake_chrome_identity_service.h", |
| 68 "signin/fake_chrome_identity_service.mm", | 71 "signin/fake_chrome_identity_service.mm", |
| 69 "test_chrome_browser_provider.h", | 72 "test_chrome_browser_provider.h", |
| 70 "test_chrome_browser_provider.mm", | 73 "test_chrome_browser_provider.mm", |
| 71 "test_chrome_provider_initializer.h", | 74 "test_chrome_provider_initializer.h", |
| 72 "test_chrome_provider_initializer.mm", | 75 "test_chrome_provider_initializer.mm", |
| 73 "test_updatable_resource_provider.h", | 76 "test_updatable_resource_provider.h", |
| 74 "test_updatable_resource_provider.mm", | 77 "test_updatable_resource_provider.mm", |
| 78 "voice/test_voice_search_provider.h", |
| 79 "voice/test_voice_search_provider.mm", |
| 75 ] | 80 ] |
| 76 | 81 |
| 77 deps = [ | 82 deps = [ |
| 78 ":browser", | 83 ":browser", |
| 79 "//base", | 84 "//base", |
| 80 "//components/signin/ios/browser:test_support", | 85 "//components/signin/ios/browser:test_support", |
| 81 "//testing/gmock", | 86 "//testing/gmock", |
| 82 "//testing/gtest", | 87 "//testing/gtest", |
| 83 ] | 88 ] |
| 84 } | 89 } |
| OLD | NEW |