OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//ios/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
6 | 6 |
7 source_set("web") { | 7 source_set("web") { |
8 configs += [ "//build/config/compiler:enable_arc" ] | 8 configs += [ "//build/config/compiler:enable_arc" ] |
9 sources = [ | 9 sources = [ |
10 "dom_altering_lock.h", | 10 "dom_altering_lock.h", |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 "blocked_popup_tab_helper.h", | 177 "blocked_popup_tab_helper.h", |
178 "blocked_popup_tab_helper.mm", | 178 "blocked_popup_tab_helper.mm", |
179 "chrome_web_client.h", | 179 "chrome_web_client.h", |
180 "chrome_web_client.mm", | 180 "chrome_web_client.mm", |
181 "error_page_content.h", | 181 "error_page_content.h", |
182 "error_page_content.mm", | 182 "error_page_content.mm", |
183 "error_page_generator.h", | 183 "error_page_generator.h", |
184 "error_page_generator.mm", | 184 "error_page_generator.mm", |
185 "external_app_launcher.h", | 185 "external_app_launcher.h", |
186 "external_app_launcher.mm", | 186 "external_app_launcher.mm", |
| 187 "mailto_handler.h", |
| 188 "mailto_handler.mm", |
| 189 "mailto_handler_gmail.h", |
| 190 "mailto_handler_gmail.mm", |
| 191 "mailto_handler_system_mail.h", |
| 192 "mailto_handler_system_mail.mm", |
| 193 "mailto_url_rewriter.h", |
| 194 "mailto_url_rewriter.mm", |
187 "passkit_dialog_provider.h", | 195 "passkit_dialog_provider.h", |
188 "print_observer.h", | 196 "print_observer.h", |
189 "print_observer.mm", | 197 "print_observer.mm", |
190 ] | 198 ] |
191 deps = [ | 199 deps = [ |
192 ":chrome_bundle", | 200 ":chrome_bundle", |
193 ":resources", | 201 ":resources", |
194 "//base", | 202 "//base", |
195 "//components/content_settings/core/browser", | 203 "//components/content_settings/core/browser", |
196 "//components/dom_distiller/core", | 204 "//components/dom_distiller/core", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 | 251 |
244 source_set("unit_tests_internal") { | 252 source_set("unit_tests_internal") { |
245 configs += [ "//build/config/compiler:enable_arc" ] | 253 configs += [ "//build/config/compiler:enable_arc" ] |
246 testonly = true | 254 testonly = true |
247 sources = [ | 255 sources = [ |
248 "auto_reload_controller_unittest.mm", | 256 "auto_reload_controller_unittest.mm", |
249 "blocked_popup_tab_helper_unittest.mm", | 257 "blocked_popup_tab_helper_unittest.mm", |
250 "chrome_web_client_unittest.mm", | 258 "chrome_web_client_unittest.mm", |
251 "error_page_generator_unittest.mm", | 259 "error_page_generator_unittest.mm", |
252 "external_app_launcher_unittest.mm", | 260 "external_app_launcher_unittest.mm", |
| 261 "mailto_handler_gmail_unittest.mm", |
| 262 "mailto_handler_system_mail_unittest.mm", |
| 263 "mailto_handler_unittest.mm", |
| 264 "mailto_url_rewriter_unittest.mm", |
253 ] | 265 ] |
254 deps = [ | 266 deps = [ |
255 ":test_support", | 267 ":test_support", |
256 ":web_internal", | 268 ":web_internal", |
257 "//base", | 269 "//base", |
258 "//base/test:test_support", | 270 "//base/test:test_support", |
259 "//components/content_settings/core/browser", | 271 "//components/content_settings/core/browser", |
260 "//components/infobars/core", | 272 "//components/infobars/core", |
261 "//ios/chrome/browser/browser_state:test_support", | 273 "//ios/chrome/browser/browser_state:test_support", |
262 "//ios/chrome/browser/content_settings:content_settings", | 274 "//ios/chrome/browser/content_settings:content_settings", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 "early_page_script_perftest.mm", | 338 "early_page_script_perftest.mm", |
327 ] | 339 ] |
328 deps = [ | 340 deps = [ |
329 "//base", | 341 "//base", |
330 "//ios/chrome/test/base:perf_test_support", | 342 "//ios/chrome/test/base:perf_test_support", |
331 "//ios/web", | 343 "//ios/web", |
332 "//ios/web:test_support", | 344 "//ios/web:test_support", |
333 ] | 345 ] |
334 libs = [ "WebKit.framework" ] | 346 libs = [ "WebKit.framework" ] |
335 } | 347 } |
OLD | NEW |