| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "auto_reload_bridge.h", | 150 "auto_reload_bridge.h", |
| 151 "auto_reload_bridge.mm", | 151 "auto_reload_bridge.mm", |
| 152 "auto_reload_controller.h", | 152 "auto_reload_controller.h", |
| 153 "auto_reload_controller.mm", | 153 "auto_reload_controller.mm", |
| 154 "blocked_popup_handler.h", | 154 "blocked_popup_handler.h", |
| 155 "blocked_popup_handler.mm", | 155 "blocked_popup_handler.mm", |
| 156 "chrome_web_client.h", | 156 "chrome_web_client.h", |
| 157 "chrome_web_client.mm", | 157 "chrome_web_client.mm", |
| 158 "error_page_content.h", | 158 "error_page_content.h", |
| 159 "error_page_content.mm", | 159 "error_page_content.mm", |
| 160 "error_page_generator.h", |
| 161 "error_page_generator.mm", |
| 160 "external_app_launcher.h", | 162 "external_app_launcher.h", |
| 161 "external_app_launcher.mm", | 163 "external_app_launcher.mm", |
| 162 "passkit_dialog_provider.h", | 164 "passkit_dialog_provider.h", |
| 163 "print_observer.h", | 165 "print_observer.h", |
| 164 "print_observer.mm", | 166 "print_observer.mm", |
| 165 ] | 167 ] |
| 166 deps = [ | 168 deps = [ |
| 167 ":injected_js", | 169 ":injected_js", |
| 168 ":resources", | 170 ":resources", |
| 169 "//base", | 171 "//base", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 "//ios/web", | 214 "//ios/web", |
| 213 "//ios/web:test_support", | 215 "//ios/web:test_support", |
| 214 ] | 216 ] |
| 215 } | 217 } |
| 216 | 218 |
| 217 source_set("unit_tests_internal") { | 219 source_set("unit_tests_internal") { |
| 218 testonly = true | 220 testonly = true |
| 219 sources = [ | 221 sources = [ |
| 220 "auto_reload_controller_unittest.mm", | 222 "auto_reload_controller_unittest.mm", |
| 221 "chrome_web_client_unittest.mm", | 223 "chrome_web_client_unittest.mm", |
| 222 "error_page_content_unittest.mm", | 224 "error_page_generator_unittest.mm", |
| 223 "external_app_launcher_unittest.mm", | 225 "external_app_launcher_unittest.mm", |
| 224 "find_in_page_js_unittest.mm", | 226 "find_in_page_js_unittest.mm", |
| 225 "js_findinpage_manager_unittest.mm", | 227 "js_findinpage_manager_unittest.mm", |
| 226 ] | 228 ] |
| 227 deps = [ | 229 deps = [ |
| 228 ":test_support", | 230 ":test_support", |
| 229 ":web_internal", | 231 ":web_internal", |
| 230 "//base", | 232 "//base", |
| 231 "//base/test:test_support", | 233 "//base/test:test_support", |
| 232 "//ios/chrome/browser/find_in_page", | 234 "//ios/chrome/browser/find_in_page", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 "early_page_script_perftest.mm", | 295 "early_page_script_perftest.mm", |
| 294 ] | 296 ] |
| 295 deps = [ | 297 deps = [ |
| 296 "//base", | 298 "//base", |
| 297 "//ios/chrome/test/base:perf_test_support", | 299 "//ios/chrome/test/base:perf_test_support", |
| 298 "//ios/web", | 300 "//ios/web", |
| 299 "//ios/web:test_support", | 301 "//ios/web:test_support", |
| 300 ] | 302 ] |
| 301 libs = [ "WebKit.framework" ] | 303 libs = [ "WebKit.framework" ] |
| 302 } | 304 } |
| OLD | NEW |