| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "mailto_handler_system_mail_unittest.mm", | 58 "mailto_handler_system_mail_unittest.mm", |
| 59 "mailto_handler_unittest.mm", | 59 "mailto_handler_unittest.mm", |
| 60 "mailto_url_rewriter_unittest.mm", | 60 "mailto_url_rewriter_unittest.mm", |
| 61 "navigation_manager_util_unittest.mm", | 61 "navigation_manager_util_unittest.mm", |
| 62 "network_activity_indicator_tab_helper_unittest.mm", | 62 "network_activity_indicator_tab_helper_unittest.mm", |
| 63 "repost_form_tab_helper_unittest.mm", | 63 "repost_form_tab_helper_unittest.mm", |
| 64 "sad_tab_tab_helper_unittest.mm", | 64 "sad_tab_tab_helper_unittest.mm", |
| 65 ] | 65 ] |
| 66 deps = [ | 66 deps = [ |
| 67 ":sad_tab_tab_helper_delegate", | 67 ":sad_tab_tab_helper_delegate", |
| 68 ":test_support", |
| 68 ":web", | 69 ":web", |
| 69 "//base:base", | 70 "//base:base", |
| 70 "//base/test:test_support", | 71 "//base/test:test_support", |
| 71 "//components/strings:components_strings_grit", | 72 "//components/strings:components_strings_grit", |
| 72 "//ios/chrome/browser/ui:ui", | 73 "//ios/chrome/browser/ui:ui", |
| 73 "//ios/chrome/browser/ui/sad_tab", | 74 "//ios/chrome/browser/ui/sad_tab", |
| 74 "//ios/chrome/test:test_support", | 75 "//ios/chrome/test:test_support", |
| 75 "//ios/web:test_support", | 76 "//ios/web:test_support", |
| 76 "//ios/web:web_arc", | 77 "//ios/web:web_arc", |
| 77 "//testing/gtest", | 78 "//testing/gtest", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "//url", | 240 "//url", |
| 240 ] | 241 ] |
| 241 libs = [ "UIKit.framework" ] | 242 libs = [ "UIKit.framework" ] |
| 242 } | 243 } |
| 243 | 244 |
| 244 source_set("test_support") { | 245 source_set("test_support") { |
| 245 testonly = true | 246 testonly = true |
| 246 sources = [ | 247 sources = [ |
| 247 "chrome_web_test.h", | 248 "chrome_web_test.h", |
| 248 "chrome_web_test.mm", | 249 "chrome_web_test.mm", |
| 250 "fake_mailto_handler_helpers.h", |
| 251 "fake_mailto_handler_helpers.mm", |
| 249 ] | 252 ] |
| 250 deps = [ | 253 deps = [ |
| 251 "//components/password_manager/core/browser:test_support", | 254 "//components/password_manager/core/browser:test_support", |
| 252 "//ios/chrome/browser/browser_state:test_support", | 255 "//ios/chrome/browser/browser_state:test_support", |
| 253 "//ios/chrome/browser/passwords", | 256 "//ios/chrome/browser/passwords", |
| 254 "//ios/chrome/browser/ui:ui_internal", | 257 "//ios/chrome/browser/ui:ui_internal", |
| 258 "//ios/chrome/browser/web", |
| 255 "//ios/web", | 259 "//ios/web", |
| 256 "//ios/web:test_support", | 260 "//ios/web:test_support", |
| 257 ] | 261 ] |
| 258 } | 262 } |
| 259 | 263 |
| 260 source_set("unit_tests_internal") { | 264 source_set("unit_tests_internal") { |
| 261 configs += [ "//build/config/compiler:enable_arc" ] | 265 configs += [ "//build/config/compiler:enable_arc" ] |
| 262 testonly = true | 266 testonly = true |
| 263 sources = [ | 267 sources = [ |
| 264 "auto_reload_controller_unittest.mm", | 268 "auto_reload_controller_unittest.mm", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "early_page_script_perftest.mm", | 346 "early_page_script_perftest.mm", |
| 343 ] | 347 ] |
| 344 deps = [ | 348 deps = [ |
| 345 "//base", | 349 "//base", |
| 346 "//ios/chrome/test/base:perf_test_support", | 350 "//ios/chrome/test/base:perf_test_support", |
| 347 "//ios/web", | 351 "//ios/web", |
| 348 "//ios/web:test_support", | 352 "//ios/web:test_support", |
| 349 ] | 353 ] |
| 350 libs = [ "WebKit.framework" ] | 354 libs = [ "WebKit.framework" ] |
| 351 } | 355 } |
| OLD | NEW |