| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 217     "//components/password_manager/core/browser:test_support", | 217     "//components/password_manager/core/browser:test_support", | 
| 218     "//ios/chrome/browser/browser_state:test_support", | 218     "//ios/chrome/browser/browser_state:test_support", | 
| 219     "//ios/chrome/browser/passwords", | 219     "//ios/chrome/browser/passwords", | 
| 220     "//ios/chrome/browser/ui:ui_internal", | 220     "//ios/chrome/browser/ui:ui_internal", | 
| 221     "//ios/web", | 221     "//ios/web", | 
| 222     "//ios/web:test_support", | 222     "//ios/web:test_support", | 
| 223   ] | 223   ] | 
| 224 } | 224 } | 
| 225 | 225 | 
| 226 source_set("unit_tests_internal") { | 226 source_set("unit_tests_internal") { | 
|  | 227   configs += [ "//build/config/compiler:enable_arc" ] | 
| 227   testonly = true | 228   testonly = true | 
| 228   sources = [ | 229   sources = [ | 
| 229     "auto_reload_controller_unittest.mm", | 230     "auto_reload_controller_unittest.mm", | 
| 230     "blocked_popup_tab_helper_unittest.mm", | 231     "blocked_popup_tab_helper_unittest.mm", | 
| 231     "chrome_web_client_unittest.mm", | 232     "chrome_web_client_unittest.mm", | 
| 232     "error_page_generator_unittest.mm", | 233     "error_page_generator_unittest.mm", | 
| 233     "external_app_launcher_unittest.mm", | 234     "external_app_launcher_unittest.mm", | 
| 234   ] | 235   ] | 
| 235   deps = [ | 236   deps = [ | 
| 236     ":test_support", | 237     ":test_support", | 
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 306     "early_page_script_perftest.mm", | 307     "early_page_script_perftest.mm", | 
| 307   ] | 308   ] | 
| 308   deps = [ | 309   deps = [ | 
| 309     "//base", | 310     "//base", | 
| 310     "//ios/chrome/test/base:perf_test_support", | 311     "//ios/chrome/test/base:perf_test_support", | 
| 311     "//ios/web", | 312     "//ios/web", | 
| 312     "//ios/web:test_support", | 313     "//ios/web:test_support", | 
| 313   ] | 314   ] | 
| 314   libs = [ "WebKit.framework" ] | 315   libs = [ "WebKit.framework" ] | 
| 315 } | 316 } | 
| OLD | NEW | 
|---|