| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 source_set("web_arc") { | 10 source_set("web_arc") { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "navigation/navigation_manager_facade_delegate.h", | 58 "navigation/navigation_manager_facade_delegate.h", |
| 59 "navigation/navigation_manager_impl.h", | 59 "navigation/navigation_manager_impl.h", |
| 60 "navigation/navigation_manager_impl.mm", | 60 "navigation/navigation_manager_impl.mm", |
| 61 "navigation/nscoder_util.h", | 61 "navigation/nscoder_util.h", |
| 62 "navigation/nscoder_util.mm", | 62 "navigation/nscoder_util.mm", |
| 63 "navigation/time_smoother.cc", | 63 "navigation/time_smoother.cc", |
| 64 "navigation/time_smoother.h", | 64 "navigation/time_smoother.h", |
| 65 "net/cert_host_pair.cc", | 65 "net/cert_host_pair.cc", |
| 66 "net/cert_host_pair.h", | 66 "net/cert_host_pair.h", |
| 67 "net/cert_policy.cc", | 67 "net/cert_policy.cc", |
| 68 "net/cert_store_impl.cc", | |
| 69 "net/cert_store_impl.h", | |
| 70 "net/certificate_policy_cache.cc", | 68 "net/certificate_policy_cache.cc", |
| 71 "net/clients/crw_js_injection_network_client.h", | 69 "net/clients/crw_js_injection_network_client.h", |
| 72 "net/clients/crw_js_injection_network_client.mm", | 70 "net/clients/crw_js_injection_network_client.mm", |
| 73 "net/clients/crw_js_injection_network_client_factory.h", | 71 "net/clients/crw_js_injection_network_client_factory.h", |
| 74 "net/clients/crw_js_injection_network_client_factory.mm", | 72 "net/clients/crw_js_injection_network_client_factory.mm", |
| 75 "net/clients/crw_redirect_network_client.h", | 73 "net/clients/crw_redirect_network_client.h", |
| 76 "net/clients/crw_redirect_network_client.mm", | 74 "net/clients/crw_redirect_network_client.mm", |
| 77 "net/clients/crw_redirect_network_client_factory.h", | 75 "net/clients/crw_redirect_network_client_factory.h", |
| 78 "net/clients/crw_redirect_network_client_factory.mm", | 76 "net/clients/crw_redirect_network_client_factory.mm", |
| 79 "net/cookie_notification_bridge.h", | 77 "net/cookie_notification_bridge.h", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 ":web_arc", | 129 ":web_arc", |
| 132 ] | 130 ] |
| 133 | 131 |
| 134 sources = [ | 132 sources = [ |
| 135 "payments/payment_request.cc", | 133 "payments/payment_request.cc", |
| 136 "public/active_state_manager.h", | 134 "public/active_state_manager.h", |
| 137 "public/block_types.h", | 135 "public/block_types.h", |
| 138 "public/browser_state.h", | 136 "public/browser_state.h", |
| 139 "public/browser_url_rewriter.h", | 137 "public/browser_url_rewriter.h", |
| 140 "public/cert_policy.h", | 138 "public/cert_policy.h", |
| 141 "public/cert_store.h", | |
| 142 "public/certificate_policy_cache.h", | 139 "public/certificate_policy_cache.h", |
| 143 "public/favicon_status.cc", | 140 "public/favicon_status.cc", |
| 144 "public/favicon_status.h", | 141 "public/favicon_status.h", |
| 145 "public/favicon_url.cc", | 142 "public/favicon_url.cc", |
| 146 "public/favicon_url.h", | 143 "public/favicon_url.h", |
| 147 "public/interstitials/web_interstitial.h", | 144 "public/interstitials/web_interstitial.h", |
| 148 "public/interstitials/web_interstitial_delegate.h", | 145 "public/interstitials/web_interstitial_delegate.h", |
| 149 "public/java_script_dialog_callback.h", | 146 "public/java_script_dialog_callback.h", |
| 150 "public/java_script_dialog_presenter.h", | 147 "public/java_script_dialog_presenter.h", |
| 151 "public/java_script_dialog_type.h", | 148 "public/java_script_dialog_type.h", |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 } | 605 } |
| 609 | 606 |
| 610 grit("resources") { | 607 grit("resources") { |
| 611 source = "ios_web_resources.grd" | 608 source = "ios_web_resources.grd" |
| 612 use_qualified_include = true | 609 use_qualified_include = true |
| 613 outputs = [ | 610 outputs = [ |
| 614 "grit/ios_web_resources.h", | 611 "grit/ios_web_resources.h", |
| 615 "ios_web_resources.pak", | 612 "ios_web_resources.pak", |
| 616 ] | 613 ] |
| 617 } | 614 } |
| OLD | NEW |