| 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", |
| 11 "api_activity_logger.h", | 11 "api_activity_logger.h", |
| 12 "api_definitions_natives.cc", | 12 "api_definitions_natives.cc", |
| 13 "api_definitions_natives.h", | 13 "api_definitions_natives.h", |
| 14 "app_runtime_custom_bindings.cc", | 14 "app_runtime_custom_bindings.cc", |
| 15 "app_runtime_custom_bindings.h", | 15 "app_runtime_custom_bindings.h", |
| 16 "app_window_custom_bindings.cc", |
| 17 "app_window_custom_bindings.h", |
| 16 "binding_generating_native_handler.cc", | 18 "binding_generating_native_handler.cc", |
| 17 "binding_generating_native_handler.h", | 19 "binding_generating_native_handler.h", |
| 18 "blob_native_handler.cc", | 20 "blob_native_handler.cc", |
| 19 "blob_native_handler.h", | 21 "blob_native_handler.h", |
| 20 "console.cc", | 22 "console.cc", |
| 21 "console.h", | 23 "console.h", |
| 22 "content_watcher.cc", | 24 "content_watcher.cc", |
| 23 "content_watcher.h", | 25 "content_watcher.h", |
| 24 "context_menus_custom_bindings.cc", | 26 "context_menus_custom_bindings.cc", |
| 25 "context_menus_custom_bindings.h", | 27 "context_menus_custom_bindings.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "process_info_native_handler.h", | 71 "process_info_native_handler.h", |
| 70 "programmatic_script_injector.cc", | 72 "programmatic_script_injector.cc", |
| 71 "programmatic_script_injector.h", | 73 "programmatic_script_injector.h", |
| 72 "render_view_observer_natives.cc", | 74 "render_view_observer_natives.cc", |
| 73 "render_view_observer_natives.h", | 75 "render_view_observer_natives.h", |
| 74 "request_sender.cc", | 76 "request_sender.cc", |
| 75 "request_sender.h", | 77 "request_sender.h", |
| 76 "resource_bundle_source_map.cc", | 78 "resource_bundle_source_map.cc", |
| 77 "resource_bundle_source_map.h", | 79 "resource_bundle_source_map.h", |
| 78 "resources/app_runtime_custom_bindings.js", | 80 "resources/app_runtime_custom_bindings.js", |
| 81 "resources/app_window_custom_bindings.js", |
| 79 "resources/binding.js", | 82 "resources/binding.js", |
| 80 "resources/context_menus_custom_bindings.js", | 83 "resources/context_menus_custom_bindings.js", |
| 81 "resources/entry_id_manager.js", | 84 "resources/entry_id_manager.js", |
| 82 "resources/event.js", | 85 "resources/event.js", |
| 83 "resources/extension_custom_bindings.js", | 86 "resources/extension_custom_bindings.js", |
| 84 "resources/greasemonkey_api.js", | 87 "resources/greasemonkey_api.js", |
| 85 "resources/i18n_custom_bindings.js", | 88 "resources/i18n_custom_bindings.js", |
| 86 "resources/image_util.js", | 89 "resources/image_util.js", |
| 87 "resources/json_schema.js", | 90 "resources/json_schema.js", |
| 88 "resources/last_error.js", | 91 "resources/last_error.js", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "send_request_natives.cc", | 165 "send_request_natives.cc", |
| 163 ] | 166 ] |
| 164 } | 167 } |
| 165 | 168 |
| 166 if (is_win) { | 169 if (is_win) { |
| 167 cflags = [ | 170 cflags = [ |
| 168 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 171 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 169 ] | 172 ] |
| 170 } | 173 } |
| 171 } | 174 } |
| OLD | NEW |