OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("web") { | |
6 configs += [ "//build/config/compiler:enable_arc" ] | |
7 sources = [ | |
8 "web_controller_provider.h", | |
9 "web_controller_provider.mm", | |
10 "web_controller_provider_factory.h", | |
11 "web_controller_provider_factory.mm", | |
12 ] | |
13 | |
14 deps = [ | |
15 "//base", | |
16 "//ios/web", | |
17 "//url", | |
18 ] | |
19 | |
20 allow_circular_includes_from = [ "//ios/web" ] | |
21 } | |
OLD | NEW |