| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 } | 218 } |
| 219 | 219 |
| 220 source_set("unit_tests_internal") { | 220 source_set("unit_tests_internal") { |
| 221 testonly = true | 221 testonly = true |
| 222 sources = [ | 222 sources = [ |
| 223 "auto_reload_controller_unittest.mm", | 223 "auto_reload_controller_unittest.mm", |
| 224 "blocked_popup_tab_helper_unittest.mm", | 224 "blocked_popup_tab_helper_unittest.mm", |
| 225 "chrome_web_client_unittest.mm", | 225 "chrome_web_client_unittest.mm", |
| 226 "error_page_generator_unittest.mm", | 226 "error_page_generator_unittest.mm", |
| 227 "external_app_launcher_unittest.mm", | 227 "external_app_launcher_unittest.mm", |
| 228 "find_in_page_js_unittest.mm", | |
| 229 "js_findinpage_manager_unittest.mm", | |
| 230 ] | 228 ] |
| 231 deps = [ | 229 deps = [ |
| 232 ":test_support", | 230 ":test_support", |
| 233 ":web_internal", | 231 ":web_internal", |
| 234 "//base", | 232 "//base", |
| 235 "//base/test:test_support", | 233 "//base/test:test_support", |
| 236 "//components/content_settings/core/browser", | 234 "//components/content_settings/core/browser", |
| 237 "//components/infobars/core", | 235 "//components/infobars/core", |
| 238 "//ios/chrome/browser/browser_state:test_support", | 236 "//ios/chrome/browser/browser_state:test_support", |
| 239 "//ios/chrome/browser/content_settings:content_settings", | 237 "//ios/chrome/browser/content_settings:content_settings", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 "early_page_script_perftest.mm", | 300 "early_page_script_perftest.mm", |
| 303 ] | 301 ] |
| 304 deps = [ | 302 deps = [ |
| 305 "//base", | 303 "//base", |
| 306 "//ios/chrome/test/base:perf_test_support", | 304 "//ios/chrome/test/base:perf_test_support", |
| 307 "//ios/web", | 305 "//ios/web", |
| 308 "//ios/web:test_support", | 306 "//ios/web:test_support", |
| 309 ] | 307 ] |
| 310 libs = [ "WebKit.framework" ] | 308 libs = [ "WebKit.framework" ] |
| 311 } | 309 } |
| OLD | NEW |