| 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", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//components/pref_registry", | 34 "//components/pref_registry", |
| 35 "//components/prefs", | 35 "//components/prefs", |
| 36 "//ios/public/provider/chrome/browser", | 36 "//ios/public/provider/chrome/browser", |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| 40 source_set("tts") { | 40 source_set("tts") { |
| 41 configs += [ "//build/config/compiler:enable_arc" ] |
| 41 sources = [ | 42 sources = [ |
| 42 "text_to_speech_listener.h", | 43 "text_to_speech_listener.h", |
| 43 "text_to_speech_listener.mm", | 44 "text_to_speech_listener.mm", |
| 44 "text_to_speech_parser.h", | 45 "text_to_speech_parser.h", |
| 45 "text_to_speech_parser.mm", | 46 "text_to_speech_parser.mm", |
| 46 "voice_search_url_rewriter.h", | 47 "voice_search_url_rewriter.h", |
| 47 "voice_search_url_rewriter.mm", | 48 "voice_search_url_rewriter.mm", |
| 48 ] | 49 ] |
| 49 | 50 |
| 50 deps = [ | 51 deps = [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 75 "//ios/web", | 76 "//ios/web", |
| 76 "//ios/web:test_support", | 77 "//ios/web:test_support", |
| 77 "//testing/gtest", | 78 "//testing/gtest", |
| 78 "//third_party/google_toolbox_for_mac", | 79 "//third_party/google_toolbox_for_mac", |
| 79 ] | 80 ] |
| 80 | 81 |
| 81 public_deps = [ | 82 public_deps = [ |
| 82 ":tts", | 83 ":tts", |
| 83 ] | 84 ] |
| 84 } | 85 } |
| OLD | NEW |