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", | 13 "cwv_html_element.mm", |
14 "cwv_html_element_internal.h", | 14 "cwv_html_element_internal.h", |
15 "cwv_navigation_action.mm", | 15 "cwv_navigation_action.mm", |
16 "cwv_navigation_action_internal.h", | 16 "cwv_navigation_action_internal.h", |
| 17 "cwv_user_content_controller.mm", |
| 18 "cwv_user_content_controller_internal.h", |
| 19 "cwv_user_script.mm", |
17 "cwv_web_view.mm", | 20 "cwv_web_view.mm", |
18 "cwv_web_view_configuration.mm", | 21 "cwv_web_view_configuration.mm", |
19 "cwv_web_view_configuration_internal.h", | 22 "cwv_web_view_configuration_internal.h", |
20 "pref_names.cc", | 23 "pref_names.cc", |
21 "pref_names.h", | 24 "pref_names.h", |
22 "web_view_browser_state.h", | 25 "web_view_browser_state.h", |
23 "web_view_browser_state.mm", | 26 "web_view_browser_state.mm", |
| 27 "web_view_early_page_script_provider.h", |
| 28 "web_view_early_page_script_provider.mm", |
24 "web_view_java_script_dialog_presenter.h", | 29 "web_view_java_script_dialog_presenter.h", |
25 "web_view_java_script_dialog_presenter.mm", | 30 "web_view_java_script_dialog_presenter.mm", |
26 "web_view_network_delegate.cc", | 31 "web_view_network_delegate.cc", |
27 "web_view_network_delegate.h", | 32 "web_view_network_delegate.h", |
28 "web_view_url_request_context_getter.h", | 33 "web_view_url_request_context_getter.h", |
29 "web_view_url_request_context_getter.mm", | 34 "web_view_url_request_context_getter.mm", |
30 "web_view_web_client.h", | 35 "web_view_web_client.h", |
31 "web_view_web_client.mm", | 36 "web_view_web_client.mm", |
32 "web_view_web_main_delegate.h", | 37 "web_view_web_main_delegate.h", |
33 "web_view_web_main_delegate.mm", | 38 "web_view_web_main_delegate.mm", |
(...skipping 18 matching lines...) Expand all Loading... |
52 "//net", | 57 "//net", |
53 "//net:extras", | 58 "//net:extras", |
54 "//ui/base", | 59 "//ui/base", |
55 "//url", | 60 "//url", |
56 ] | 61 ] |
57 | 62 |
58 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] | 63 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] |
59 | 64 |
60 configs += [ "//build/config/compiler:enable_arc" ] | 65 configs += [ "//build/config/compiler:enable_arc" ] |
61 } | 66 } |
OLD | NEW |