| 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 |
| 5 source_set("internal") { | 25 source_set("internal") { |
| 6 visibility = [ | 26 visibility = [ |
| 7 "//ios/web_view", | 27 "//ios/web_view", |
| 8 "//ios/web_view/internal/*", | 28 "//ios/web_view/internal/*", |
| 9 ] | 29 ] |
| 10 | 30 |
| 11 sources = [ | 31 sources = [ |
| 12 "criwv.mm", | 32 "criwv.mm", |
| 13 "criwv_browser_state.h", | 33 "criwv_browser_state.h", |
| 14 "criwv_browser_state.mm", | 34 "criwv_browser_state.mm", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 37 "//ios/web", | 57 "//ios/web", |
| 38 "//ios/web:user_agent", | 58 "//ios/web:user_agent", |
| 39 "//ios/web/public/app", | 59 "//ios/web/public/app", |
| 40 "//ios/web_view/internal/translate", | 60 "//ios/web_view/internal/translate", |
| 41 "//ios/web_view/public", | 61 "//ios/web_view/public", |
| 42 "//net", | 62 "//net", |
| 43 "//net:extras", | 63 "//net:extras", |
| 44 "//ui/base", | 64 "//ui/base", |
| 45 "//url", | 65 "//url", |
| 46 ] | 66 ] |
| 47 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] | 67 |
| 68 public_deps = [ |
| 69 ":internal_arc", |
| 70 ] |
| 71 |
| 72 allow_circular_includes_from = [ |
| 73 ":internal_arc", |
| 74 "//ios/web_view/internal/translate", |
| 75 ] |
| 48 } | 76 } |
| OLD | NEW |