| 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_arc") { | |
| 6 visibility = [ | |
| 7 "//ios/web_view", | |
| 8 "//ios/web_view/internal/*", | |
| 9 ] | |
| 10 | |
| 11 sources = [ | |
| 12 "criwv_web_view_configuration.mm", | |
| 13 "criwv_website_data_store.mm", | |
| 14 "criwv_website_data_store_internal.h", | |
| 15 ] | |
| 16 | |
| 17 deps = [ | |
| 18 "//ios/web/public/app", | |
| 19 "//ios/web_view/public", | |
| 20 ] | |
| 21 | |
| 22 configs += [ "//build/config/compiler:enable_arc" ] | |
| 23 } | |
| 24 | |
| 25 source_set("internal") { | 5 source_set("internal") { |
| 26 visibility = [ | 6 visibility = [ |
| 27 "//ios/web_view", | 7 "//ios/web_view", |
| 28 "//ios/web_view/internal/*", | 8 "//ios/web_view/internal/*", |
| 29 ] | 9 ] |
| 30 | 10 |
| 31 sources = [ | 11 sources = [ |
| 32 "criwv.mm", | 12 "criwv.mm", |
| 33 "criwv_browser_state.h", | 13 "criwv_browser_state.h", |
| 34 "criwv_browser_state.mm", | 14 "criwv_browser_state.mm", |
| 35 "criwv_network_delegate.cc", | 15 "criwv_network_delegate.cc", |
| 36 "criwv_network_delegate.h", | 16 "criwv_network_delegate.h", |
| 37 "criwv_url_request_context_getter.h", | 17 "criwv_url_request_context_getter.h", |
| 38 "criwv_url_request_context_getter.mm", | 18 "criwv_url_request_context_getter.mm", |
| 39 "criwv_web_client.h", | 19 "criwv_web_client.h", |
| 40 "criwv_web_client.mm", | 20 "criwv_web_client.mm", |
| 41 "criwv_web_main_delegate.h", | 21 "criwv_web_main_delegate.h", |
| 42 "criwv_web_main_delegate.mm", | 22 "criwv_web_main_delegate.mm", |
| 43 "criwv_web_main_parts.h", | 23 "criwv_web_main_parts.h", |
| 44 "criwv_web_main_parts.mm", | 24 "criwv_web_main_parts.mm", |
| 45 "criwv_web_view.mm", | 25 "criwv_web_view.mm", |
| 26 "criwv_web_view_configuration.mm", |
| 27 "criwv_website_data_store.mm", |
| 28 "criwv_website_data_store_internal.h", |
| 46 "pref_names.cc", | 29 "pref_names.cc", |
| 47 "pref_names.h", | 30 "pref_names.h", |
| 48 ] | 31 ] |
| 49 deps = [ | 32 deps = [ |
| 50 "//base", | 33 "//base", |
| 51 "//components/pref_registry", | 34 "//components/pref_registry", |
| 52 "//components/prefs", | 35 "//components/prefs", |
| 53 "//components/translate/core/browser", | 36 "//components/translate/core/browser", |
| 54 "//components/translate/core/common", | 37 "//components/translate/core/common", |
| 55 "//ios/net", | 38 "//ios/net", |
| 56 "//ios/web", | 39 "//ios/web", |
| 57 "//ios/web:user_agent", | 40 "//ios/web:user_agent", |
| 58 "//ios/web/public/app", | 41 "//ios/web/public/app", |
| 59 "//ios/web_view/internal/translate", | 42 "//ios/web_view/internal/translate", |
| 60 "//ios/web_view/public", | 43 "//ios/web_view/public", |
| 61 "//net", | 44 "//net", |
| 62 "//net:extras", | 45 "//net:extras", |
| 63 "//ui/base", | 46 "//ui/base", |
| 64 "//url", | 47 "//url", |
| 65 ] | 48 ] |
| 66 | 49 |
| 67 public_deps = [ | 50 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] |
| 68 ":internal_arc", | |
| 69 ] | |
| 70 | 51 |
| 71 allow_circular_includes_from = [ | 52 configs += [ "//build/config/compiler:enable_arc" ] |
| 72 ":internal_arc", | |
| 73 "//ios/web_view/internal/translate", | |
| 74 ] | |
| 75 } | 53 } |
| OLD | NEW |