| 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 # GYP version: extensions/extensions.gyp:extensions_renderer | 5 # GYP version: extensions/extensions.gyp:extensions_renderer |
| 6 source_set("renderer") { | 6 source_set("renderer") { |
| 7 sources = [ | 7 sources = [ |
| 8 "activity_log_converter_strategy.cc", | 8 "activity_log_converter_strategy.cc", |
| 9 "activity_log_converter_strategy.h", | 9 "activity_log_converter_strategy.h", |
| 10 "api_activity_logger.cc", | 10 "api_activity_logger.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "dispatcher.h", | 31 "dispatcher.h", |
| 32 "dispatcher_delegate.h", | 32 "dispatcher_delegate.h", |
| 33 "document_custom_bindings.cc", | 33 "document_custom_bindings.cc", |
| 34 "document_custom_bindings.h", | 34 "document_custom_bindings.h", |
| 35 "dom_activity_logger.cc", | 35 "dom_activity_logger.cc", |
| 36 "dom_activity_logger.h", | 36 "dom_activity_logger.h", |
| 37 "event_bindings.cc", | 37 "event_bindings.cc", |
| 38 "event_bindings.h", | 38 "event_bindings.h", |
| 39 "extension_helper.cc", | 39 "extension_helper.cc", |
| 40 "extension_helper.h", | 40 "extension_helper.h", |
| 41 "extensions_render_frame_observer.cc", |
| 42 "extensions_render_frame_observer.h", |
| 41 "extensions_renderer_client.cc", | 43 "extensions_renderer_client.cc", |
| 42 "extensions_renderer_client.h", | 44 "extensions_renderer_client.h", |
| 43 "extension_groups.h", | 45 "extension_groups.h", |
| 46 "guest_view/guest_view_internal_custom_bindings.cc", |
| 47 "guest_view/guest_view_internal_custom_bindings.h", |
| 44 "file_system_natives.cc", | 48 "file_system_natives.cc", |
| 45 "file_system_natives.h", | 49 "file_system_natives.h", |
| 46 "i18n_custom_bindings.cc", | 50 "i18n_custom_bindings.cc", |
| 47 "i18n_custom_bindings.h", | 51 "i18n_custom_bindings.h", |
| 48 "id_generator_custom_bindings.cc", | 52 "id_generator_custom_bindings.cc", |
| 49 "id_generator_custom_bindings.h", | 53 "id_generator_custom_bindings.h", |
| 50 "lazy_background_page_native_handler.cc", | 54 "lazy_background_page_native_handler.cc", |
| 51 "lazy_background_page_native_handler.h", | 55 "lazy_background_page_native_handler.h", |
| 52 "logging_native_handler.cc", | 56 "logging_native_handler.cc", |
| 53 "logging_native_handler.h", | 57 "logging_native_handler.h", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "send_request_natives.cc", | 162 "send_request_natives.cc", |
| 159 ] | 163 ] |
| 160 } | 164 } |
| 161 | 165 |
| 162 if (is_win) { | 166 if (is_win) { |
| 163 cflags = [ | 167 cflags = [ |
| 164 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 168 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 165 ] | 169 ] |
| 166 } | 170 } |
| 167 } | 171 } |
| OLD | NEW |