OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("web") { | 5 source_set("web") { |
6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
7 sources = [ | 7 sources = [ |
8 "web_controller_provider.h", | 8 "web_controller_provider.h", |
9 "web_controller_provider.mm", | 9 "web_controller_provider.mm", |
| 10 "web_controller_provider_factory.h", |
| 11 "web_controller_provider_factory.mm", |
10 ] | 12 ] |
11 | 13 |
12 deps = [ | 14 deps = [ |
13 "//base", | 15 "//base", |
14 "//ios/web", | 16 "//ios/web", |
15 "//url", | 17 "//url", |
16 ] | 18 ] |
17 | 19 |
18 allow_circular_includes_from = [ "//ios/web" ] | 20 allow_circular_includes_from = [ "//ios/web" ] |
19 } | 21 } |
OLD | NEW |