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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "resources/platform_app.js", | 100 "resources/platform_app.js", |
101 "resources/runtime_custom_bindings.js", | 101 "resources/runtime_custom_bindings.js", |
102 "resources/schema_utils.js", | 102 "resources/schema_utils.js", |
103 "resources/send_request.js", | 103 "resources/send_request.js", |
104 "resources/set_icon.js", | 104 "resources/set_icon.js", |
105 "resources/storage_area.js", | 105 "resources/storage_area.js", |
106 "resources/test_custom_bindings.js", | 106 "resources/test_custom_bindings.js", |
107 "resources/uncaught_exception_handler.js", | 107 "resources/uncaught_exception_handler.js", |
108 "resources/unload_event.js", | 108 "resources/unload_event.js", |
109 "resources/utils.js", | 109 "resources/utils.js", |
| 110 "resources/web_view.js", |
| 111 "resources/web_view_events.js", |
| 112 "resources/web_view_experimental.js", |
110 "resources/web_request_custom_bindings.js", | 113 "resources/web_request_custom_bindings.js", |
111 "resources/web_request_internal_custom_bindings.js", | 114 "resources/web_request_internal_custom_bindings.js", |
112 "runtime_custom_bindings.cc", | 115 "runtime_custom_bindings.cc", |
113 "runtime_custom_bindings.h", | 116 "runtime_custom_bindings.h", |
114 "safe_builtins.cc", | 117 "safe_builtins.cc", |
115 "safe_builtins.h", | 118 "safe_builtins.h", |
116 "scoped_persistent.h", | 119 "scoped_persistent.h", |
117 "script_context.cc", | 120 "script_context.cc", |
118 "script_context.h", | 121 "script_context.h", |
119 "script_context_set.cc", | 122 "script_context_set.cc", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 "//skia", | 161 "//skia", |
159 "//third_party/WebKit/public:blink", | 162 "//third_party/WebKit/public:blink", |
160 ] | 163 ] |
161 | 164 |
162 if (is_win) { | 165 if (is_win) { |
163 cflags = [ | 166 cflags = [ |
164 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 167 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
165 ] | 168 ] |
166 } | 169 } |
167 } | 170 } |
OLD | NEW |