| 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 source_set("internal") { | 5 source_set("internal") { |
| 6 visibility = [ | 6 visibility = [ |
| 7 "//ios/web_view", | 7 "//ios/web_view", |
| 8 "//ios/web_view/internal/*", | 8 "//ios/web_view/internal/*", |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "web_view_web_state_policy_decider.mm", | 36 "web_view_web_state_policy_decider.mm", |
| 37 ] | 37 ] |
| 38 deps = [ | 38 deps = [ |
| 39 "//base", | 39 "//base", |
| 40 "//components/pref_registry", | 40 "//components/pref_registry", |
| 41 "//components/prefs", | 41 "//components/prefs", |
| 42 "//components/translate/core/browser", | 42 "//components/translate/core/browser", |
| 43 "//components/translate/core/common", | 43 "//components/translate/core/common", |
| 44 "//ios/net", | 44 "//ios/net", |
| 45 "//ios/web", | 45 "//ios/web", |
| 46 "//ios/web:reload_type", |
| 46 "//ios/web:user_agent", | 47 "//ios/web:user_agent", |
| 47 "//ios/web/public/app", | 48 "//ios/web/public/app", |
| 48 "//ios/web_view/internal/translate", | 49 "//ios/web_view/internal/translate", |
| 49 "//ios/web_view/public", | 50 "//ios/web_view/public", |
| 50 "//net", | 51 "//net", |
| 51 "//net:extras", | 52 "//net:extras", |
| 52 "//ui/base", | 53 "//ui/base", |
| 53 "//url", | 54 "//url", |
| 54 ] | 55 ] |
| 55 | 56 |
| 56 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] | 57 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] |
| 57 | 58 |
| 58 configs += [ "//build/config/compiler:enable_arc" ] | 59 configs += [ "//build/config/compiler:enable_arc" ] |
| 59 } | 60 } |
| OLD | NEW |