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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 "resources/app_runtime_custom_bindings.js", | 155 "resources/app_runtime_custom_bindings.js", |
156 "resources/app_window_custom_bindings.js", | 156 "resources/app_window_custom_bindings.js", |
157 "resources/binding.js", | 157 "resources/binding.js", |
158 "resources/context_menus_custom_bindings.js", | 158 "resources/context_menus_custom_bindings.js", |
159 "resources/declarative_webrequest_custom_bindings.js", | 159 "resources/declarative_webrequest_custom_bindings.js", |
160 "resources/entry_id_manager.js", | 160 "resources/entry_id_manager.js", |
161 "resources/event.js", | 161 "resources/event.js", |
162 "resources/extension.css", | 162 "resources/extension.css", |
163 "resources/extension_custom_bindings.js", | 163 "resources/extension_custom_bindings.js", |
164 "resources/extension_fonts.css", | 164 "resources/extension_fonts.css", |
| 165 "resources/file_entry_binding_util.js", |
| 166 "resources/file_system_custom_bindings.js", |
165 "resources/greasemonkey_api.js", | 167 "resources/greasemonkey_api.js", |
166 "resources/guest_view/app_view/app_view.js", | 168 "resources/guest_view/app_view/app_view.js", |
167 "resources/guest_view/extension_options/extension_options.js", | 169 "resources/guest_view/extension_options/extension_options.js", |
168 "resources/guest_view/extension_view/extension_view.js", | 170 "resources/guest_view/extension_view/extension_view.js", |
169 "resources/guest_view/web_view/web_view.js", | 171 "resources/guest_view/web_view/web_view.js", |
170 "resources/guest_view/web_view/web_view_events.js", | 172 "resources/guest_view/web_view/web_view_events.js", |
171 "resources/guest_view/web_view/web_view_iframe.js", | 173 "resources/guest_view/web_view/web_view_iframe.js", |
172 "resources/i18n_custom_bindings.js", | 174 "resources/i18n_custom_bindings.js", |
173 "resources/image_util.js", | 175 "resources/image_util.js", |
174 "resources/json_schema.js", | 176 "resources/json_schema.js", |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 "//ui/base", | 383 "//ui/base", |
382 ] | 384 ] |
383 | 385 |
384 if (enable_wifi_display && proprietary_codecs) { | 386 if (enable_wifi_display && proprietary_codecs) { |
385 sources += [ | 387 sources += [ |
386 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 388 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
387 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 389 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
388 ] | 390 ] |
389 } | 391 } |
390 } | 392 } |
OLD | NEW |