Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: ios/public/provider/chrome/browser/BUILD.gn

Issue 2453003002: [ios] Adds a VoiceSearchController interface to the provider layer. (Closed)
Patch Set: Fix compile. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_controller.h",
36 "voice/voice_search_controller.mm",
37 "voice/voice_search_controller_delegate.h",
35 "voice/voice_search_language.h", 38 "voice/voice_search_language.h",
36 "voice/voice_search_language.mm", 39 "voice/voice_search_language.mm",
40 "voice/voice_search_prefs.cc",
41 "voice/voice_search_prefs.h",
37 "voice/voice_search_provider.h", 42 "voice/voice_search_provider.h",
38 "voice/voice_search_provider.mm", 43 "voice/voice_search_provider.mm",
39 ] 44 ]
40 45
41 public_deps = [ 46 public_deps = [
42 ":provider_flags", 47 ":provider_flags",
43 ] 48 ]
44 49
45 deps = [ 50 deps = [
46 "//base", 51 "//base",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 ] 84 ]
80 85
81 deps = [ 86 deps = [
82 ":browser", 87 ":browser",
83 "//base", 88 "//base",
84 "//components/signin/ios/browser:test_support", 89 "//components/signin/ios/browser:test_support",
85 "//testing/gmock", 90 "//testing/gmock",
86 "//testing/gtest", 91 "//testing/gtest",
87 ] 92 ]
88 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698