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 13 matching lines...) Expand all Loading... |
24 "content_watcher.cc", | 24 "content_watcher.cc", |
25 "content_watcher.h", | 25 "content_watcher.h", |
26 "context_menus_custom_bindings.cc", | 26 "context_menus_custom_bindings.cc", |
27 "context_menus_custom_bindings.h", | 27 "context_menus_custom_bindings.h", |
28 "css_native_handler.cc", | 28 "css_native_handler.cc", |
29 "css_native_handler.h", | 29 "css_native_handler.h", |
30 "default_dispatcher_delegate.cc", | 30 "default_dispatcher_delegate.cc", |
31 "default_dispatcher_delegate.h", | 31 "default_dispatcher_delegate.h", |
32 "dispatcher.cc", | 32 "dispatcher.cc", |
33 "dispatcher.h", | 33 "dispatcher.h", |
| 34 "dispatcher_delegate.cc", |
34 "dispatcher_delegate.h", | 35 "dispatcher_delegate.h", |
35 "document_custom_bindings.cc", | 36 "document_custom_bindings.cc", |
36 "document_custom_bindings.h", | 37 "document_custom_bindings.h", |
37 "dom_activity_logger.cc", | 38 "dom_activity_logger.cc", |
38 "dom_activity_logger.h", | 39 "dom_activity_logger.h", |
39 "event_bindings.cc", | 40 "event_bindings.cc", |
40 "event_bindings.h", | 41 "event_bindings.h", |
41 "extension_groups.h", | 42 "extension_groups.h", |
42 "extension_helper.cc", | 43 "extension_helper.cc", |
43 "extension_helper.h", | 44 "extension_helper.h", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "resources/platform_app.js", | 100 "resources/platform_app.js", |
100 "resources/runtime_custom_bindings.js", | 101 "resources/runtime_custom_bindings.js", |
101 "resources/schema_utils.js", | 102 "resources/schema_utils.js", |
102 "resources/send_request.js", | 103 "resources/send_request.js", |
103 "resources/set_icon.js", | 104 "resources/set_icon.js", |
104 "resources/storage_area.js", | 105 "resources/storage_area.js", |
105 "resources/test_custom_bindings.js", | 106 "resources/test_custom_bindings.js", |
106 "resources/uncaught_exception_handler.js", | 107 "resources/uncaught_exception_handler.js", |
107 "resources/unload_event.js", | 108 "resources/unload_event.js", |
108 "resources/utils.js", | 109 "resources/utils.js", |
| 110 "resources/web_request_custom_bindings.js", |
| 111 "resources/web_request_internal_custom_bindings.js", |
109 "runtime_custom_bindings.cc", | 112 "runtime_custom_bindings.cc", |
110 "runtime_custom_bindings.h", | 113 "runtime_custom_bindings.h", |
111 "safe_builtins.cc", | 114 "safe_builtins.cc", |
112 "safe_builtins.h", | 115 "safe_builtins.h", |
113 "scoped_persistent.h", | 116 "scoped_persistent.h", |
114 "script_context.cc", | 117 "script_context.cc", |
115 "script_context.h", | 118 "script_context.h", |
116 "script_context_set.cc", | 119 "script_context_set.cc", |
117 "script_context_set.h", | 120 "script_context_set.h", |
118 "script_injection.cc", | 121 "script_injection.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 "//skia", | 158 "//skia", |
156 "//third_party/WebKit/public:blink", | 159 "//third_party/WebKit/public:blink", |
157 ] | 160 ] |
158 | 161 |
159 if (is_win) { | 162 if (is_win) { |
160 cflags = [ | 163 cflags = [ |
161 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 164 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
162 ] | 165 ] |
163 } | 166 } |
164 } | 167 } |
OLD | NEW |