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 "network_activity_indicator_tab_helper.h", | 12 "network_activity_indicator_tab_helper.h", |
13 "network_activity_indicator_tab_helper.mm", | 13 "network_activity_indicator_tab_helper.mm", |
14 "resubmit_data_controller.h", | 14 "resubmit_data_controller.h", |
15 "resubmit_data_controller.mm", | 15 "resubmit_data_controller.mm", |
16 ] | 16 ] |
17 deps = [ | 17 deps = [ |
18 "//base", | 18 "//base", |
19 "//components/strings", | 19 "//components/strings", |
20 "//ios/chrome/browser/ui", | 20 "//ios/chrome/browser/ui", |
21 "//ios/web", | 21 "//ios/web", |
22 "//ui/base", | 22 "//ui/base", |
23 ] | 23 ] |
24 public_deps = [ | |
25 ":web_arc", | |
26 ] | |
27 } | |
28 | |
29 source_set("web_arc") { | |
30 visibility = [ ":web" ] | |
31 sources = [ | |
32 "web_controller_provider_factory_impl.h", | |
33 "web_controller_provider_factory_impl.mm", | |
34 "web_controller_provider_impl.h", | |
35 "web_controller_provider_impl.mm", | |
36 ] | |
37 deps = [ | |
38 "//base", | |
39 "//ios/public/provider/web", | |
40 "//ios/web", | |
41 "//url", | |
42 ] | |
43 configs += [ "//build/config/compiler:enable_arc" ] | |
44 } | 24 } |
45 | 25 |
46 source_set("unit_tests") { | 26 source_set("unit_tests") { |
47 configs += [ "//build/config/compiler:enable_arc" ] | 27 configs += [ "//build/config/compiler:enable_arc" ] |
48 testonly = true | 28 testonly = true |
49 sources = [ | 29 sources = [ |
50 "network_activity_indicator_tab_helper_unittest.mm", | 30 "network_activity_indicator_tab_helper_unittest.mm", |
51 ] | 31 ] |
52 deps = [ | 32 deps = [ |
53 ":web", | 33 ":web", |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 # Clean Skeleton targets. | 295 # Clean Skeleton targets. |
316 source_set("web_clean_skeleton") { | 296 source_set("web_clean_skeleton") { |
317 sources = [ | 297 sources = [ |
318 "web_mediator+internal.h", | 298 "web_mediator+internal.h", |
319 "web_mediator.h", | 299 "web_mediator.h", |
320 "web_mediator.mm", | 300 "web_mediator.mm", |
321 ] | 301 ] |
322 | 302 |
323 configs += [ "//build/config/compiler:enable_arc" ] | 303 configs += [ "//build/config/compiler:enable_arc" ] |
324 } | 304 } |
OLD | NEW |