| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("speech") { | 7 blink_modules_sources("speech") { |
| 8 sources = [ | 8 sources = [ |
| 9 "DOMWindowSpeech.h", | 9 "DOMWindowSpeech.h", |
| 10 "DOMWindowSpeechSynthesis.cpp", | 10 "DOMWindowSpeechSynthesis.cpp", |
| 11 "DOMWindowSpeechSynthesis.h", | 11 "DOMWindowSpeechSynthesis.h", |
| 12 "SpeechGrammar.cpp", | 12 "SpeechGrammar.cpp", |
| 13 "SpeechGrammar.h", | 13 "SpeechGrammar.h", |
| 14 "SpeechGrammarList.cpp", | 14 "SpeechGrammarList.cpp", |
| 15 "SpeechGrammarList.h", | 15 "SpeechGrammarList.h", |
| 16 "SpeechRecognition.cpp", | 16 "SpeechRecognition.cpp", |
| 17 "SpeechRecognition.h", | 17 "SpeechRecognition.h", |
| 18 "SpeechRecognitionAlternative.cpp", | 18 "SpeechRecognitionAlternative.cpp", |
| 19 "SpeechRecognitionAlternative.h", | 19 "SpeechRecognitionAlternative.h", |
| 20 "SpeechRecognitionClient.h", | 20 "SpeechRecognitionClient.h", |
| 21 "SpeechRecognitionClientProxy.cpp", |
| 22 "SpeechRecognitionClientProxy.h", |
| 21 "SpeechRecognitionController.cpp", | 23 "SpeechRecognitionController.cpp", |
| 22 "SpeechRecognitionController.h", | 24 "SpeechRecognitionController.h", |
| 23 "SpeechRecognitionError.cpp", | 25 "SpeechRecognitionError.cpp", |
| 24 "SpeechRecognitionError.h", | 26 "SpeechRecognitionError.h", |
| 25 "SpeechRecognitionEvent.cpp", | 27 "SpeechRecognitionEvent.cpp", |
| 26 "SpeechRecognitionEvent.h", | 28 "SpeechRecognitionEvent.h", |
| 27 "SpeechRecognitionResult.cpp", | 29 "SpeechRecognitionResult.cpp", |
| 28 "SpeechRecognitionResult.h", | 30 "SpeechRecognitionResult.h", |
| 29 "SpeechRecognitionResultList.cpp", | 31 "SpeechRecognitionResultList.cpp", |
| 30 "SpeechRecognitionResultList.h", | 32 "SpeechRecognitionResultList.h", |
| 31 "SpeechSynthesis.cpp", | 33 "SpeechSynthesis.cpp", |
| 32 "SpeechSynthesis.h", | 34 "SpeechSynthesis.h", |
| 33 "SpeechSynthesisEvent.cpp", | 35 "SpeechSynthesisEvent.cpp", |
| 34 "SpeechSynthesisEvent.h", | 36 "SpeechSynthesisEvent.h", |
| 35 "SpeechSynthesisUtterance.cpp", | 37 "SpeechSynthesisUtterance.cpp", |
| 36 "SpeechSynthesisUtterance.h", | 38 "SpeechSynthesisUtterance.h", |
| 37 "SpeechSynthesisVoice.cpp", | 39 "SpeechSynthesisVoice.cpp", |
| 38 "SpeechSynthesisVoice.h", | 40 "SpeechSynthesisVoice.h", |
| 39 ] | 41 ] |
| 40 } | 42 } |
| OLD | NEW |