| 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", |
| 11 "dom_altering_lock.mm", | 11 "dom_altering_lock.mm", |
| 12 "navigation_manager_util.h", |
| 13 "navigation_manager_util.mm", |
| 12 "network_activity_indicator_tab_helper.h", | 14 "network_activity_indicator_tab_helper.h", |
| 13 "network_activity_indicator_tab_helper.mm", | 15 "network_activity_indicator_tab_helper.mm", |
| 14 "repost_form_tab_helper.h", | 16 "repost_form_tab_helper.h", |
| 15 "repost_form_tab_helper.mm", | 17 "repost_form_tab_helper.mm", |
| 16 ] | 18 ] |
| 17 deps = [ | 19 deps = [ |
| 18 "//base", | 20 "//base", |
| 19 "//components/strings", | 21 "//components/strings", |
| 20 "//ios/chrome/browser/ui", | 22 "//ios/chrome/browser/ui", |
| 21 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator", | 23 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator", |
| 22 "//ios/chrome/browser/ui/util:util", | 24 "//ios/chrome/browser/ui/util:util", |
| 23 "//ios/web", | 25 "//ios/web", |
| 24 "//ui/base", | 26 "//ui/base", |
| 25 ] | 27 ] |
| 26 } | 28 } |
| 27 | 29 |
| 28 source_set("unit_tests") { | 30 source_set("unit_tests") { |
| 29 configs += [ "//build/config/compiler:enable_arc" ] | 31 configs += [ "//build/config/compiler:enable_arc" ] |
| 30 testonly = true | 32 testonly = true |
| 31 sources = [ | 33 sources = [ |
| 34 "navigation_manager_util_unittest.mm", |
| 32 "network_activity_indicator_tab_helper_unittest.mm", | 35 "network_activity_indicator_tab_helper_unittest.mm", |
| 33 "repost_form_tab_helper_unittest.mm", | 36 "repost_form_tab_helper_unittest.mm", |
| 34 ] | 37 ] |
| 35 deps = [ | 38 deps = [ |
| 36 ":web", | 39 ":web", |
| 37 "//base:base", | 40 "//base:base", |
| 38 "//base/test:test_support", | 41 "//base/test:test_support", |
| 39 "//components/strings:components_strings_grit", | 42 "//components/strings:components_strings_grit", |
| 40 "//ios/chrome/browser/ui:ui", | 43 "//ios/chrome/browser/ui:ui", |
| 41 "//ios/chrome/test:test_support", | 44 "//ios/chrome/test:test_support", |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "early_page_script_perftest.mm", | 303 "early_page_script_perftest.mm", |
| 301 ] | 304 ] |
| 302 deps = [ | 305 deps = [ |
| 303 "//base", | 306 "//base", |
| 304 "//ios/chrome/test/base:perf_test_support", | 307 "//ios/chrome/test/base:perf_test_support", |
| 305 "//ios/web", | 308 "//ios/web", |
| 306 "//ios/web:test_support", | 309 "//ios/web:test_support", |
| 307 ] | 310 ] |
| 308 libs = [ "WebKit.framework" ] | 311 libs = [ "WebKit.framework" ] |
| 309 } | 312 } |
| OLD | NEW |