| 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 source_set("voice") { | 5 source_set("voice") { |
| 6 sources = [ | 6 sources = [ |
| 7 "speech_input_locale.h", | 7 "speech_input_locale.h", |
| 8 "speech_input_locale_config.h", | 8 "speech_input_locale_config.h", |
| 9 "speech_input_locale_config.mm", | 9 "speech_input_locale_config.mm", |
| 10 "speech_input_locale_config_impl.h", | 10 "speech_input_locale_config_impl.h", |
| 11 "speech_input_locale_config_impl.mm", | 11 "speech_input_locale_config_impl.mm", |
| 12 "speech_input_locale_match_config.h", | 12 "speech_input_locale_match_config.h", |
| 13 "speech_input_locale_match_config.mm", | 13 "speech_input_locale_match_config.mm", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [ |
| 17 "//components/pref_registry", |
| 18 "//components/prefs", |
| 19 ] |
| 20 |
| 16 public_deps = [ | 21 public_deps = [ |
| 17 "//base", | 22 "//base", |
| 18 "//ios/chrome/browser", | 23 "//ios/chrome/browser", |
| 19 "//ios/public/provider/chrome/browser", | 24 "//ios/public/provider/chrome/browser", |
| 20 ] | 25 ] |
| 21 } | 26 } |
| 22 | 27 |
| 28 source_set("prefs") { |
| 29 sources = [ |
| 30 "voice_search_prefs_registration.cc", |
| 31 "voice_search_prefs_registration.h", |
| 32 ] |
| 33 |
| 34 deps = [ |
| 35 "//components/pref_registry", |
| 36 "//components/prefs", |
| 37 "//ios/public/provider/chrome/browser", |
| 38 ] |
| 39 } |
| 40 |
| 23 source_set("tts") { | 41 source_set("tts") { |
| 24 sources = [ | 42 sources = [ |
| 25 "text_to_speech_listener.h", | 43 "text_to_speech_listener.h", |
| 26 "text_to_speech_listener.mm", | 44 "text_to_speech_listener.mm", |
| 27 "text_to_speech_parser.h", | 45 "text_to_speech_parser.h", |
| 28 "text_to_speech_parser.mm", | 46 "text_to_speech_parser.mm", |
| 29 "voice_search_url_rewriter.h", | 47 "voice_search_url_rewriter.h", |
| 30 "voice_search_url_rewriter.mm", | 48 "voice_search_url_rewriter.mm", |
| 31 ] | 49 ] |
| 32 | 50 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 57 "//ios/web", | 75 "//ios/web", |
| 58 "//ios/web:test_support", | 76 "//ios/web:test_support", |
| 59 "//testing/gtest", | 77 "//testing/gtest", |
| 60 "//third_party/google_toolbox_for_mac", | 78 "//third_party/google_toolbox_for_mac", |
| 61 ] | 79 ] |
| 62 | 80 |
| 63 public_deps = [ | 81 public_deps = [ |
| 64 ":tts", | 82 ":tts", |
| 65 ] | 83 ] |
| 66 } | 84 } |
| OLD | NEW |