| 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 = [ | 16 deps = [ |
| 17 "//base", |
| 17 "//components/pref_registry", | 18 "//components/pref_registry", |
| 18 "//components/prefs", | 19 "//components/prefs", |
| 19 ] | |
| 20 | |
| 21 public_deps = [ | |
| 22 "//base", | |
| 23 "//ios/public/provider/chrome/browser", | 20 "//ios/public/provider/chrome/browser", |
| 24 "//ios/public/provider/chrome/browser/voice", | 21 "//ios/public/provider/chrome/browser/voice", |
| 25 ] | 22 ] |
| 26 } | 23 } |
| 27 | 24 |
| 28 source_set("prefs") { | 25 source_set("prefs") { |
| 29 sources = [ | 26 sources = [ |
| 30 "voice_search_prefs_registration.cc", | 27 "voice_search_prefs_registration.cc", |
| 31 "voice_search_prefs_registration.h", | 28 "voice_search_prefs_registration.h", |
| 32 ] | 29 ] |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 source_set("unit_tests") { | 63 source_set("unit_tests") { |
| 67 configs += [ "//build/config/compiler:enable_arc" ] | 64 configs += [ "//build/config/compiler:enable_arc" ] |
| 68 testonly = true | 65 testonly = true |
| 69 | 66 |
| 70 sources = [ | 67 sources = [ |
| 71 "text_to_speech_listener_unittest.mm", | 68 "text_to_speech_listener_unittest.mm", |
| 72 "text_to_speech_parser_unittest.mm", | 69 "text_to_speech_parser_unittest.mm", |
| 73 ] | 70 ] |
| 74 | 71 |
| 75 deps = [ | 72 deps = [ |
| 73 ":tts", |
| 76 "//base", | 74 "//base", |
| 77 "//ios/web", | 75 "//ios/web", |
| 78 "//ios/web:test_support", | 76 "//ios/web:test_support", |
| 79 "//testing/gtest", | 77 "//testing/gtest", |
| 80 "//third_party/google_toolbox_for_mac", | 78 "//third_party/google_toolbox_for_mac", |
| 81 ] | 79 ] |
| 82 | |
| 83 public_deps = [ | |
| 84 ":tts", | |
| 85 ] | |
| 86 } | 80 } |
| OLD | NEW |