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", | |
113 "resources/web_request_custom_bindings.js", | 110 "resources/web_request_custom_bindings.js", |
114 "resources/web_request_internal_custom_bindings.js", | 111 "resources/web_request_internal_custom_bindings.js", |
115 "runtime_custom_bindings.cc", | 112 "runtime_custom_bindings.cc", |
116 "runtime_custom_bindings.h", | 113 "runtime_custom_bindings.h", |
117 "safe_builtins.cc", | 114 "safe_builtins.cc", |
118 "safe_builtins.h", | 115 "safe_builtins.h", |
119 "scoped_persistent.h", | 116 "scoped_persistent.h", |
120 "script_context.cc", | 117 "script_context.cc", |
121 "script_context.h", | 118 "script_context.h", |
122 "script_context_set.cc", | 119 "script_context_set.cc", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 "//skia", | 158 "//skia", |
162 "//third_party/WebKit/public:blink", | 159 "//third_party/WebKit/public:blink", |
163 ] | 160 ] |
164 | 161 |
165 if (is_win) { | 162 if (is_win) { |
166 cflags = [ | 163 cflags = [ |
167 "/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. |
168 ] | 165 ] |
169 } | 166 } |
170 } | 167 } |
OLD | NEW |