OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
7 | 7 |
8 assert(enable_extensions) | 8 assert(enable_extensions) |
9 | 9 |
10 source_set("renderer") { | 10 source_set("renderer") { |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 "resources/app_runtime_custom_bindings.js", | 146 "resources/app_runtime_custom_bindings.js", |
147 "resources/app_window_custom_bindings.js", | 147 "resources/app_window_custom_bindings.js", |
148 "resources/binding.js", | 148 "resources/binding.js", |
149 "resources/context_menus_custom_bindings.js", | 149 "resources/context_menus_custom_bindings.js", |
150 "resources/declarative_webrequest_custom_bindings.js", | 150 "resources/declarative_webrequest_custom_bindings.js", |
151 "resources/entry_id_manager.js", | 151 "resources/entry_id_manager.js", |
152 "resources/event.js", | 152 "resources/event.js", |
153 "resources/extension.css", | 153 "resources/extension.css", |
154 "resources/extension_custom_bindings.js", | 154 "resources/extension_custom_bindings.js", |
155 "resources/extension_fonts.css", | 155 "resources/extension_fonts.css", |
| 156 "resources/file_entry_binding_util.js", |
| 157 "resources/file_system_custom_bindings.js", |
156 "resources/greasemonkey_api.js", | 158 "resources/greasemonkey_api.js", |
157 "resources/guest_view/app_view/app_view.js", | 159 "resources/guest_view/app_view/app_view.js", |
158 "resources/guest_view/extension_options/extension_options.js", | 160 "resources/guest_view/extension_options/extension_options.js", |
159 "resources/guest_view/extension_view/extension_view.js", | 161 "resources/guest_view/extension_view/extension_view.js", |
160 "resources/guest_view/web_view/web_view.js", | 162 "resources/guest_view/web_view/web_view.js", |
161 "resources/guest_view/web_view/web_view_events.js", | 163 "resources/guest_view/web_view/web_view_events.js", |
162 "resources/guest_view/web_view/web_view_iframe.js", | 164 "resources/guest_view/web_view/web_view_iframe.js", |
163 "resources/i18n_custom_bindings.js", | 165 "resources/i18n_custom_bindings.js", |
164 "resources/image_util.js", | 166 "resources/image_util.js", |
165 "resources/json_schema.js", | 167 "resources/json_schema.js", |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 "//ui/base", | 371 "//ui/base", |
370 ] | 372 ] |
371 | 373 |
372 if (enable_wifi_display && proprietary_codecs) { | 374 if (enable_wifi_display && proprietary_codecs) { |
373 sources += [ | 375 sources += [ |
374 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 376 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
375 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 377 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
376 ] | 378 ] |
377 } | 379 } |
378 } | 380 } |
OLD | NEW |