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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 assert(enable_extensions) | 7 assert(enable_extensions) |
8 | 8 |
9 # GYP version: extensions/extensions.gyp:extensions_renderer | 9 # GYP version: extensions/extensions.gyp:extensions_renderer |
10 source_set("renderer") { | 10 source_set("renderer") { |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 "script_injection_manager.h", | 138 "script_injection_manager.h", |
139 "script_injector.h", | 139 "script_injector.h", |
140 "scripts_run_info.cc", | 140 "scripts_run_info.cc", |
141 "scripts_run_info.h", | 141 "scripts_run_info.h", |
142 "send_request_natives.cc", | 142 "send_request_natives.cc", |
143 "send_request_natives.h", | 143 "send_request_natives.h", |
144 "set_icon_natives.cc", | 144 "set_icon_natives.cc", |
145 "set_icon_natives.h", | 145 "set_icon_natives.h", |
146 "static_v8_external_one_byte_string_resource.cc", | 146 "static_v8_external_one_byte_string_resource.cc", |
147 "static_v8_external_one_byte_string_resource.h", | 147 "static_v8_external_one_byte_string_resource.h", |
| 148 "tab_finder.cc", |
| 149 "tab_finder.h", |
148 "test_features_native_handler.cc", | 150 "test_features_native_handler.cc", |
149 "test_features_native_handler.h", | 151 "test_features_native_handler.h", |
150 "user_gestures_native_handler.cc", | 152 "user_gestures_native_handler.cc", |
151 "user_gestures_native_handler.h", | 153 "user_gestures_native_handler.h", |
152 "user_script_injector.cc", | 154 "user_script_injector.cc", |
153 "user_script_injector.h", | 155 "user_script_injector.h", |
154 "user_script_set.cc", | 156 "user_script_set.cc", |
155 "user_script_set.h", | 157 "user_script_set.h", |
156 "user_script_set_manager.cc", | 158 "user_script_set_manager.cc", |
157 "user_script_set_manager.h", | 159 "user_script_set_manager.h", |
(...skipping 12 matching lines...) Expand all Loading... |
170 "//gin", | 172 "//gin", |
171 "//skia", | 173 "//skia", |
172 "//third_party/WebKit/public:blink", | 174 "//third_party/WebKit/public:blink", |
173 "//third_party/mojo/src/mojo/edk/js", | 175 "//third_party/mojo/src/mojo/edk/js", |
174 ] | 176 ] |
175 | 177 |
176 if (is_win) { | 178 if (is_win) { |
177 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 179 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
178 } | 180 } |
179 } | 181 } |
OLD | NEW |