OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'dependencies': [ | 6 'dependencies': [ |
7 'browser/debugger/devtools_resources.gyp:devtools_resources', | 7 'browser/debugger/devtools_resources.gyp:devtools_resources', |
8 '../base/base.gyp:base_static', | 8 '../base/base.gyp:base_static', |
9 '../crypto/crypto.gyp:crypto', | 9 '../crypto/crypto.gyp:crypto', |
10 '../net/net.gyp:http_server', | 10 '../net/net.gyp:http_server', |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 'public/browser/resource_request_info.h', | 126 'public/browser/resource_request_info.h', |
127 'public/browser/resource_throttle.h', | 127 'public/browser/resource_throttle.h', |
128 'public/browser/resource_throttle_controller.h', | 128 'public/browser/resource_throttle_controller.h', |
129 'public/browser/save_page_type.h', | 129 'public/browser/save_page_type.h', |
130 'public/browser/session_storage_namespace.h', | 130 'public/browser/session_storage_namespace.h', |
131 'public/browser/site_instance.h', | 131 'public/browser/site_instance.h', |
132 'public/browser/speech_recognition_event_listener.h', | 132 'public/browser/speech_recognition_event_listener.h', |
133 'public/browser/speech_recognition_manager.h', | 133 'public/browser/speech_recognition_manager.h', |
134 'public/browser/speech_recognition_manager_delegate.h', | 134 'public/browser/speech_recognition_manager_delegate.h', |
135 'public/browser/speech_recognition_preferences.h', | 135 'public/browser/speech_recognition_preferences.h', |
| 136 'public/browser/speech_recognition_session_config.cc', |
| 137 'public/browser/speech_recognition_session_config.h', |
| 138 'public/browser/speech_recognition_session_context.h', |
136 'public/browser/speech_recognizer.h', | 139 'public/browser/speech_recognizer.h', |
137 'public/browser/trace_controller.h', | 140 'public/browser/trace_controller.h', |
138 'public/browser/trace_subscriber.h', | 141 'public/browser/trace_subscriber.h', |
139 'public/browser/user_metrics.h', | 142 'public/browser/user_metrics.h', |
140 'public/browser/utility_process_host.h', | 143 'public/browser/utility_process_host.h', |
141 'public/browser/web_contents.h', | 144 'public/browser/web_contents.h', |
142 'public/browser/web_contents_delegate.cc', | 145 'public/browser/web_contents_delegate.cc', |
143 'public/browser/web_contents_delegate.h', | 146 'public/browser/web_contents_delegate.h', |
144 'public/browser/web_contents_observer.cc', | 147 'public/browser/web_contents_observer.cc', |
145 'public/browser/web_contents_observer.h', | 148 'public/browser/web_contents_observer.h', |
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
906 ], | 909 ], |
907 }], | 910 }], |
908 ['input_speech==0', { | 911 ['input_speech==0', { |
909 'sources/': [ | 912 'sources/': [ |
910 ['exclude', '^browser/speech/'], | 913 ['exclude', '^browser/speech/'], |
911 ], | 914 ], |
912 }], | 915 }], |
913 ], | 916 ], |
914 } | 917 } |
915 | 918 |
OLD | NEW |