| 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 14 matching lines...) Expand all Loading... |
| 25 "ui/app_rating_prompt.h", | 25 "ui/app_rating_prompt.h", |
| 26 "ui/default_ios_web_view_factory.h", | 26 "ui/default_ios_web_view_factory.h", |
| 27 "ui/default_ios_web_view_factory.mm", | 27 "ui/default_ios_web_view_factory.mm", |
| 28 "ui/infobar_view_delegate.h", | 28 "ui/infobar_view_delegate.h", |
| 29 "ui/infobar_view_protocol.h", | 29 "ui/infobar_view_protocol.h", |
| 30 "ui/text_field_styling.h", | 30 "ui/text_field_styling.h", |
| 31 "updatable_resource_provider.h", | 31 "updatable_resource_provider.h", |
| 32 "updatable_resource_provider.mm", | 32 "updatable_resource_provider.mm", |
| 33 "voice/audio_session_controller.h", | 33 "voice/audio_session_controller.h", |
| 34 "voice/logo_animation_controller.h", | 34 "voice/logo_animation_controller.h", |
| 35 "voice/voice_search_bar.h", |
| 36 "voice/voice_search_bar_owner.h", |
| 35 "voice/voice_search_controller.h", | 37 "voice/voice_search_controller.h", |
| 36 "voice/voice_search_controller.mm", | 38 "voice/voice_search_controller.mm", |
| 37 "voice/voice_search_controller_delegate.h", | 39 "voice/voice_search_controller_delegate.h", |
| 38 "voice/voice_search_language.h", | 40 "voice/voice_search_language.h", |
| 39 "voice/voice_search_language.mm", | 41 "voice/voice_search_language.mm", |
| 40 "voice/voice_search_prefs.cc", | 42 "voice/voice_search_prefs.cc", |
| 41 "voice/voice_search_prefs.h", | 43 "voice/voice_search_prefs.h", |
| 44 "voice/voice_search_presenter.h", |
| 42 "voice/voice_search_provider.h", | 45 "voice/voice_search_provider.h", |
| 43 "voice/voice_search_provider.mm", | 46 "voice/voice_search_provider.mm", |
| 44 ] | 47 ] |
| 45 | 48 |
| 46 public_deps = [ | 49 public_deps = [ |
| 47 ":provider_flags", | 50 ":provider_flags", |
| 48 ] | 51 ] |
| 49 | 52 |
| 50 deps = [ | 53 deps = [ |
| 51 "//base", | 54 "//base", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 ] | 92 ] |
| 90 | 93 |
| 91 deps = [ | 94 deps = [ |
| 92 ":browser", | 95 ":browser", |
| 93 "//base", | 96 "//base", |
| 94 "//components/signin/ios/browser:test_support", | 97 "//components/signin/ios/browser:test_support", |
| 95 "//testing/gmock", | 98 "//testing/gmock", |
| 96 "//testing/gtest", | 99 "//testing/gtest", |
| 97 ] | 100 ] |
| 98 } | 101 } |
| OLD | NEW |