| 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 "DOMWindowSpeechSynthesis.cpp", | 10 "DOMWindowSpeechSynthesis.cpp", |
| 10 "DOMWindowSpeechSynthesis.h", | 11 "DOMWindowSpeechSynthesis.h", |
| 11 "SpeechGrammar.cpp", | 12 "SpeechGrammar.cpp", |
| 12 "SpeechGrammar.h", | 13 "SpeechGrammar.h", |
| 13 "SpeechGrammarList.cpp", | 14 "SpeechGrammarList.cpp", |
| 14 "SpeechGrammarList.h", | 15 "SpeechGrammarList.h", |
| 15 "SpeechRecognition.cpp", | 16 "SpeechRecognition.cpp", |
| 16 "SpeechRecognition.h", | 17 "SpeechRecognition.h", |
| 17 "SpeechRecognitionAlternative.cpp", | 18 "SpeechRecognitionAlternative.cpp", |
| 18 "SpeechRecognitionAlternative.h", | 19 "SpeechRecognitionAlternative.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 30 "SpeechSynthesis.cpp", | 31 "SpeechSynthesis.cpp", |
| 31 "SpeechSynthesis.h", | 32 "SpeechSynthesis.h", |
| 32 "SpeechSynthesisEvent.cpp", | 33 "SpeechSynthesisEvent.cpp", |
| 33 "SpeechSynthesisEvent.h", | 34 "SpeechSynthesisEvent.h", |
| 34 "SpeechSynthesisUtterance.cpp", | 35 "SpeechSynthesisUtterance.cpp", |
| 35 "SpeechSynthesisUtterance.h", | 36 "SpeechSynthesisUtterance.h", |
| 36 "SpeechSynthesisVoice.cpp", | 37 "SpeechSynthesisVoice.cpp", |
| 37 "SpeechSynthesisVoice.h", | 38 "SpeechSynthesisVoice.h", |
| 38 ] | 39 ] |
| 39 } | 40 } |
| OLD | NEW |