| 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 |
| 11 sources = [ | 11 sources = [ |
| 12 "cwv.mm", | 12 "cwv.mm", |
| 13 "cwv_html_element.mm", |
| 14 "cwv_html_element_internal.h", |
| 13 "cwv_web_view.mm", | 15 "cwv_web_view.mm", |
| 14 "cwv_web_view_configuration.mm", | 16 "cwv_web_view_configuration.mm", |
| 15 "cwv_website_data_store.mm", | 17 "cwv_website_data_store.mm", |
| 16 "cwv_website_data_store_internal.h", | 18 "cwv_website_data_store_internal.h", |
| 17 "pref_names.cc", | 19 "pref_names.cc", |
| 18 "pref_names.h", | 20 "pref_names.h", |
| 19 "web_view_browser_state.h", | 21 "web_view_browser_state.h", |
| 20 "web_view_browser_state.mm", | 22 "web_view_browser_state.mm", |
| 21 "web_view_network_delegate.cc", | 23 "web_view_network_delegate.cc", |
| 22 "web_view_network_delegate.h", | 24 "web_view_network_delegate.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 44 "//net", | 46 "//net", |
| 45 "//net:extras", | 47 "//net:extras", |
| 46 "//ui/base", | 48 "//ui/base", |
| 47 "//url", | 49 "//url", |
| 48 ] | 50 ] |
| 49 | 51 |
| 50 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] | 52 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] |
| 51 | 53 |
| 52 configs += [ "//build/config/compiler:enable_arc" ] | 54 configs += [ "//build/config/compiler:enable_arc" ] |
| 53 } | 55 } |
| OLD | NEW |