| 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 | 6 |
| 7 assert(enable_extensions) | 7 assert(enable_extensions) |
| 8 | 8 |
| 9 # GYP version: extensions/extensions.gyp:extensions_renderer | 9 # GYP version: extensions/extensions.gyp:extensions_renderer |
| 10 source_set("renderer") { | 10 source_set("renderer") { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "dispatcher_delegate.h", | 40 "dispatcher_delegate.h", |
| 41 "document_custom_bindings.cc", | 41 "document_custom_bindings.cc", |
| 42 "document_custom_bindings.h", | 42 "document_custom_bindings.h", |
| 43 "dom_activity_logger.cc", | 43 "dom_activity_logger.cc", |
| 44 "dom_activity_logger.h", | 44 "dom_activity_logger.h", |
| 45 "event_bindings.cc", | 45 "event_bindings.cc", |
| 46 "event_bindings.h", | 46 "event_bindings.h", |
| 47 "extension_groups.h", | 47 "extension_groups.h", |
| 48 "extension_helper.cc", | 48 "extension_helper.cc", |
| 49 "extension_helper.h", | 49 "extension_helper.h", |
| 50 "extension_injection_host.cc", |
| 51 "extension_injection_host.h", |
| 50 "extensions_render_frame_observer.cc", | 52 "extensions_render_frame_observer.cc", |
| 51 "extensions_render_frame_observer.h", | 53 "extensions_render_frame_observer.h", |
| 52 "extensions_renderer_client.cc", | 54 "extensions_renderer_client.cc", |
| 53 "extensions_renderer_client.h", | 55 "extensions_renderer_client.h", |
| 54 "file_system_natives.cc", | 56 "file_system_natives.cc", |
| 55 "file_system_natives.h", | 57 "file_system_natives.h", |
| 56 "guest_view/extensions_guest_view_container.cc", | 58 "guest_view/extensions_guest_view_container.cc", |
| 57 "guest_view/extensions_guest_view_container.h", | 59 "guest_view/extensions_guest_view_container.h", |
| 58 "guest_view/guest_view_container.cc", | 60 "guest_view/guest_view_container.cc", |
| 59 "guest_view/guest_view_container.h", | 61 "guest_view/guest_view_container.h", |
| 60 "guest_view/guest_view_internal_custom_bindings.cc", | 62 "guest_view/guest_view_internal_custom_bindings.cc", |
| 61 "guest_view/guest_view_internal_custom_bindings.h", | 63 "guest_view/guest_view_internal_custom_bindings.h", |
| 62 "guest_view/mime_handler_view/mime_handler_view_container.cc", | 64 "guest_view/mime_handler_view/mime_handler_view_container.cc", |
| 63 "guest_view/mime_handler_view/mime_handler_view_container.h", | 65 "guest_view/mime_handler_view/mime_handler_view_container.h", |
| 64 "i18n_custom_bindings.cc", | 66 "i18n_custom_bindings.cc", |
| 65 "i18n_custom_bindings.h", | 67 "i18n_custom_bindings.h", |
| 66 "id_generator_custom_bindings.cc", | 68 "id_generator_custom_bindings.cc", |
| 67 "id_generator_custom_bindings.h", | 69 "id_generator_custom_bindings.h", |
| 70 "injection_host.cc", |
| 71 "injection_host.h", |
| 68 "lazy_background_page_native_handler.cc", | 72 "lazy_background_page_native_handler.cc", |
| 69 "lazy_background_page_native_handler.h", | 73 "lazy_background_page_native_handler.h", |
| 70 "logging_native_handler.cc", | 74 "logging_native_handler.cc", |
| 71 "logging_native_handler.h", | 75 "logging_native_handler.h", |
| 72 "messaging_bindings.cc", | 76 "messaging_bindings.cc", |
| 73 "messaging_bindings.h", | 77 "messaging_bindings.h", |
| 74 "module_system.cc", | 78 "module_system.cc", |
| 75 "module_system.h", | 79 "module_system.h", |
| 76 "native_handler.cc", | 80 "native_handler.cc", |
| 77 "native_handler.h", | 81 "native_handler.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 "//gin", | 176 "//gin", |
| 173 "//skia", | 177 "//skia", |
| 174 "//third_party/WebKit/public:blink", | 178 "//third_party/WebKit/public:blink", |
| 175 "//third_party/mojo/src/mojo/edk/js", | 179 "//third_party/mojo/src/mojo/edk/js", |
| 176 ] | 180 ] |
| 177 | 181 |
| 178 if (is_win) { | 182 if (is_win) { |
| 179 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 183 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
| 180 } | 184 } |
| 181 } | 185 } |
| OLD | NEW |