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 import("//build/config/ios/ios_sdk.gni") | 5 import("//build/config/ios/ios_sdk.gni") |
6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
7 import("//components/grpc_support/include/headers.gni") | 7 import("//components/grpc_support/include/headers.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 config("config") { | 10 config("config") { |
(...skipping 21 matching lines...) Expand all Loading... |
32 "public/cwv_translation_controller_delegate.h", | 32 "public/cwv_translation_controller_delegate.h", |
33 "public/cwv_translation_language.h", | 33 "public/cwv_translation_language.h", |
34 "public/cwv_ui_delegate.h", | 34 "public/cwv_ui_delegate.h", |
35 "public/cwv_user_content_controller.h", | 35 "public/cwv_user_content_controller.h", |
36 "public/cwv_user_script.h", | 36 "public/cwv_user_script.h", |
37 "public/cwv_web_view.h", | 37 "public/cwv_web_view.h", |
38 "public/cwv_web_view_configuration.h", | 38 "public/cwv_web_view_configuration.h", |
39 ] | 39 ] |
40 | 40 |
41 ios_web_view_sources = [ | 41 ios_web_view_sources = [ |
| 42 "internal/app/application_context.cc", |
| 43 "internal/app/application_context.h", |
| 44 "internal/app/web_view_io_thread.h", |
| 45 "internal/app/web_view_io_thread.mm", |
42 "internal/cwv_html_element.mm", | 46 "internal/cwv_html_element.mm", |
43 "internal/cwv_html_element_internal.h", | 47 "internal/cwv_html_element_internal.h", |
44 "internal/cwv_navigation_action.mm", | 48 "internal/cwv_navigation_action.mm", |
45 "internal/cwv_navigation_action_internal.h", | 49 "internal/cwv_navigation_action_internal.h", |
46 "internal/cwv_scroll_view.mm", | 50 "internal/cwv_scroll_view.mm", |
47 "internal/cwv_scroll_view_internal.h", | 51 "internal/cwv_scroll_view_internal.h", |
48 "internal/cwv_user_content_controller.mm", | 52 "internal/cwv_user_content_controller.mm", |
49 "internal/cwv_user_content_controller_internal.h", | 53 "internal/cwv_user_content_controller_internal.h", |
50 "internal/cwv_user_script.mm", | 54 "internal/cwv_user_script.mm", |
51 "internal/cwv_web_view.mm", | 55 "internal/cwv_web_view.mm", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "internal/web_view_web_main_parts.mm", | 87 "internal/web_view_web_main_parts.mm", |
84 "internal/web_view_web_state_policy_decider.h", | 88 "internal/web_view_web_state_policy_decider.h", |
85 "internal/web_view_web_state_policy_decider.mm", | 89 "internal/web_view_web_state_policy_decider.mm", |
86 ] | 90 ] |
87 ios_web_view_sources += ios_web_view_public_headers | 91 ios_web_view_sources += ios_web_view_public_headers |
88 | 92 |
89 ios_web_view_deps = [ | 93 ios_web_view_deps = [ |
90 ":generate_license", | 94 ":generate_license", |
91 ":packed_resources", | 95 ":packed_resources", |
92 "//base", | 96 "//base", |
| 97 "//components/flags_ui", |
93 "//components/infobars/core", | 98 "//components/infobars/core", |
94 "//components/keyed_service/core", | 99 "//components/keyed_service/core", |
95 "//components/keyed_service/ios", | 100 "//components/keyed_service/ios", |
| 101 "//components/net_log", |
96 "//components/pref_registry", | 102 "//components/pref_registry", |
97 "//components/prefs", | 103 "//components/prefs", |
| 104 "//components/proxy_config", |
| 105 "//components/ssl_config", |
98 "//components/translate/core/browser", | 106 "//components/translate/core/browser", |
99 "//components/translate/core/common", | 107 "//components/translate/core/common", |
100 "//components/translate/ios/browser", | 108 "//components/translate/ios/browser", |
101 "//google_apis", | 109 "//google_apis", |
| 110 "//ios/components/io_thread", |
102 "//ios/net", | 111 "//ios/net", |
103 "//ios/web", | 112 "//ios/web", |
104 "//ios/web:reload_type", | 113 "//ios/web:reload_type", |
105 "//ios/web:user_agent", | 114 "//ios/web:user_agent", |
106 "//ios/web/public/app", | 115 "//ios/web/public/app", |
107 "//net", | 116 "//net", |
108 "//net:extras", | 117 "//net:extras", |
109 "//ui/base", | 118 "//ui/base", |
110 "//url", | 119 "//url", |
111 ] | 120 ] |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 ] | 235 ] |
227 args = [ | 236 args = [ |
228 "license_file", | 237 "license_file", |
229 rebase_path(_license_path, root_build_dir), | 238 rebase_path(_license_path, root_build_dir), |
230 "--gn-target", | 239 "--gn-target", |
231 "//ios/web_view", | 240 "//ios/web_view", |
232 "--gn-out-dir", | 241 "--gn-out-dir", |
233 ".", | 242 ".", |
234 ] | 243 ] |
235 } | 244 } |
OLD | NEW |