| 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/application_context_impl.cc", |
| 45 "internal/app/application_context_impl.h", |
| 46 "internal/app/web_view_io_thread.h", |
| 47 "internal/app/web_view_io_thread.mm", |
| 42 "internal/cwv_html_element.mm", | 48 "internal/cwv_html_element.mm", |
| 43 "internal/cwv_html_element_internal.h", | 49 "internal/cwv_html_element_internal.h", |
| 44 "internal/cwv_navigation_action.mm", | 50 "internal/cwv_navigation_action.mm", |
| 45 "internal/cwv_navigation_action_internal.h", | 51 "internal/cwv_navigation_action_internal.h", |
| 46 "internal/cwv_scroll_view.mm", | 52 "internal/cwv_scroll_view.mm", |
| 47 "internal/cwv_scroll_view_internal.h", | 53 "internal/cwv_scroll_view_internal.h", |
| 48 "internal/cwv_user_content_controller.mm", | 54 "internal/cwv_user_content_controller.mm", |
| 49 "internal/cwv_user_content_controller_internal.h", | 55 "internal/cwv_user_content_controller_internal.h", |
| 50 "internal/cwv_user_script.mm", | 56 "internal/cwv_user_script.mm", |
| 51 "internal/cwv_web_view.mm", | 57 "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", | 89 "internal/web_view_web_main_parts.mm", |
| 84 "internal/web_view_web_state_policy_decider.h", | 90 "internal/web_view_web_state_policy_decider.h", |
| 85 "internal/web_view_web_state_policy_decider.mm", | 91 "internal/web_view_web_state_policy_decider.mm", |
| 86 ] | 92 ] |
| 87 ios_web_view_sources += ios_web_view_public_headers | 93 ios_web_view_sources += ios_web_view_public_headers |
| 88 | 94 |
| 89 ios_web_view_deps = [ | 95 ios_web_view_deps = [ |
| 90 ":generate_license", | 96 ":generate_license", |
| 91 ":packed_resources", | 97 ":packed_resources", |
| 92 "//base", | 98 "//base", |
| 99 "//components/flags_ui", |
| 93 "//components/infobars/core", | 100 "//components/infobars/core", |
| 94 "//components/keyed_service/core", | 101 "//components/keyed_service/core", |
| 95 "//components/keyed_service/ios", | 102 "//components/keyed_service/ios", |
| 103 "//components/net_log", |
| 104 "//components/network_session_configurator", |
| 96 "//components/pref_registry", | 105 "//components/pref_registry", |
| 97 "//components/prefs", | 106 "//components/prefs", |
| 107 "//components/proxy_config", |
| 108 "//components/proxy_config/ios", |
| 109 "//components/ssl_config", |
| 98 "//components/translate/core/browser", | 110 "//components/translate/core/browser", |
| 99 "//components/translate/core/common", | 111 "//components/translate/core/common", |
| 100 "//components/translate/ios/browser", | 112 "//components/translate/ios/browser", |
| 113 "//components/variations", |
| 114 "//components/version_info", |
| 101 "//google_apis", | 115 "//google_apis", |
| 102 "//ios/net", | 116 "//ios/net", |
| 103 "//ios/web", | 117 "//ios/web", |
| 104 "//ios/web:reload_type", | 118 "//ios/web:reload_type", |
| 105 "//ios/web:user_agent", | 119 "//ios/web:user_agent", |
| 106 "//ios/web/public/app", | 120 "//ios/web/public/app", |
| 107 "//net", | 121 "//net", |
| 108 "//net:extras", | 122 "//net:extras", |
| 109 "//ui/base", | 123 "//ui/base", |
| 110 "//url", | 124 "//url", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 ] | 240 ] |
| 227 args = [ | 241 args = [ |
| 228 "license_file", | 242 "license_file", |
| 229 rebase_path(_license_path, root_build_dir), | 243 rebase_path(_license_path, root_build_dir), |
| 230 "--gn-target", | 244 "--gn-target", |
| 231 "//ios/web_view", | 245 "//ios/web_view", |
| 232 "--gn-out-dir", | 246 "--gn-out-dir", |
| 233 ".", | 247 ".", |
| 234 ] | 248 ] |
| 235 } | 249 } |
| OLD | NEW |