| 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/infobars/core", | 234 "//components/infobars/core", |
| 237 "//ios/chrome/browser/find_in_page", | 235 "//ios/chrome/browser/find_in_page", |
| 238 "//ios/chrome/browser/infobars", | 236 "//ios/chrome/browser/infobars", |
| 239 "//ios/chrome/browser/ui", | 237 "//ios/chrome/browser/ui", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 "early_page_script_perftest.mm", | 297 "early_page_script_perftest.mm", |
| 300 ] | 298 ] |
| 301 deps = [ | 299 deps = [ |
| 302 "//base", | 300 "//base", |
| 303 "//ios/chrome/test/base:perf_test_support", | 301 "//ios/chrome/test/base:perf_test_support", |
| 304 "//ios/web", | 302 "//ios/web", |
| 305 "//ios/web:test_support", | 303 "//ios/web:test_support", |
| 306 ] | 304 ] |
| 307 libs = [ "WebKit.framework" ] | 305 libs = [ "WebKit.framework" ] |
| 308 } | 306 } |
| OLD | NEW |