| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "display_source_custom_bindings.cc", | 50 "display_source_custom_bindings.cc", |
| 51 "display_source_custom_bindings.h", | 51 "display_source_custom_bindings.h", |
| 52 "document_custom_bindings.cc", | 52 "document_custom_bindings.cc", |
| 53 "document_custom_bindings.h", | 53 "document_custom_bindings.h", |
| 54 "dom_activity_logger.cc", | 54 "dom_activity_logger.cc", |
| 55 "dom_activity_logger.h", | 55 "dom_activity_logger.h", |
| 56 "event_bindings.cc", | 56 "event_bindings.cc", |
| 57 "event_bindings.h", | 57 "event_bindings.h", |
| 58 "event_emitter.cc", | 58 "event_emitter.cc", |
| 59 "event_emitter.h", | 59 "event_emitter.h", |
| 60 "extension_bindings_system.h", |
| 60 "extension_frame_helper.cc", | 61 "extension_frame_helper.cc", |
| 61 "extension_frame_helper.h", | 62 "extension_frame_helper.h", |
| 62 "extension_groups.h", | 63 "extension_groups.h", |
| 63 "extension_helper.cc", | 64 "extension_helper.cc", |
| 64 "extension_helper.h", | 65 "extension_helper.h", |
| 65 "extension_injection_host.cc", | 66 "extension_injection_host.cc", |
| 66 "extension_injection_host.h", | 67 "extension_injection_host.h", |
| 67 "extension_port.cc", | 68 "extension_port.cc", |
| 68 "extension_port.h", | 69 "extension_port.h", |
| 69 "extensions_render_frame_observer.cc", | 70 "extensions_render_frame_observer.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 81 "guest_view/guest_view_internal_custom_bindings.cc", | 82 "guest_view/guest_view_internal_custom_bindings.cc", |
| 82 "guest_view/guest_view_internal_custom_bindings.h", | 83 "guest_view/guest_view_internal_custom_bindings.h", |
| 83 "guest_view/mime_handler_view/mime_handler_view_container.cc", | 84 "guest_view/mime_handler_view/mime_handler_view_container.cc", |
| 84 "guest_view/mime_handler_view/mime_handler_view_container.h", | 85 "guest_view/mime_handler_view/mime_handler_view_container.h", |
| 85 "i18n_custom_bindings.cc", | 86 "i18n_custom_bindings.cc", |
| 86 "i18n_custom_bindings.h", | 87 "i18n_custom_bindings.h", |
| 87 "id_generator_custom_bindings.cc", | 88 "id_generator_custom_bindings.cc", |
| 88 "id_generator_custom_bindings.h", | 89 "id_generator_custom_bindings.h", |
| 89 "injection_host.cc", | 90 "injection_host.cc", |
| 90 "injection_host.h", | 91 "injection_host.h", |
| 92 "js_extension_bindings_system.cc", |
| 93 "js_extension_bindings_system.h", |
| 91 "lazy_background_page_native_handler.cc", | 94 "lazy_background_page_native_handler.cc", |
| 92 "lazy_background_page_native_handler.h", | 95 "lazy_background_page_native_handler.h", |
| 93 "logging_native_handler.cc", | 96 "logging_native_handler.cc", |
| 94 "logging_native_handler.h", | 97 "logging_native_handler.h", |
| 95 "messaging_bindings.cc", | 98 "messaging_bindings.cc", |
| 96 "messaging_bindings.h", | 99 "messaging_bindings.h", |
| 97 "module_system.cc", | 100 "module_system.cc", |
| 98 "module_system.h", | 101 "module_system.h", |
| 99 "native_extension_bindings_system.cc", | 102 "native_extension_bindings_system.cc", |
| 100 "native_extension_bindings_system.h", | 103 "native_extension_bindings_system.h", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 "//ui/base", | 320 "//ui/base", |
| 318 ] | 321 ] |
| 319 | 322 |
| 320 if (enable_wifi_display && proprietary_codecs) { | 323 if (enable_wifi_display && proprietary_codecs) { |
| 321 sources += [ | 324 sources += [ |
| 322 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 325 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 323 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 326 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 324 ] | 327 ] |
| 325 } | 328 } |
| 326 } | 329 } |
| OLD | NEW |