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