| 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 group("all_tests") { | 10 group("all_tests") { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "navigation/crw_session_controller.mm", | 57 "navigation/crw_session_controller.mm", |
| 58 "navigation/crw_session_entry.h", | 58 "navigation/crw_session_entry.h", |
| 59 "navigation/crw_session_entry.mm", | 59 "navigation/crw_session_entry.mm", |
| 60 "navigation/navigation_item_facade_delegate.h", | 60 "navigation/navigation_item_facade_delegate.h", |
| 61 "navigation/navigation_item_impl.h", | 61 "navigation/navigation_item_impl.h", |
| 62 "navigation/navigation_item_impl.mm", | 62 "navigation/navigation_item_impl.mm", |
| 63 "navigation/navigation_manager_delegate.h", | 63 "navigation/navigation_manager_delegate.h", |
| 64 "navigation/navigation_manager_facade_delegate.h", | 64 "navigation/navigation_manager_facade_delegate.h", |
| 65 "navigation/navigation_manager_impl.h", | 65 "navigation/navigation_manager_impl.h", |
| 66 "navigation/navigation_manager_impl.mm", | 66 "navigation/navigation_manager_impl.mm", |
| 67 "navigation/navigation_manager_storage_builder.h", |
| 68 "navigation/navigation_manager_storage_builder.mm", |
| 67 "navigation/nscoder_util.h", | 69 "navigation/nscoder_util.h", |
| 68 "navigation/nscoder_util.mm", | 70 "navigation/nscoder_util.mm", |
| 69 "navigation/time_smoother.cc", | 71 "navigation/time_smoother.cc", |
| 70 "navigation/time_smoother.h", | 72 "navigation/time_smoother.h", |
| 71 "net/cert_host_pair.cc", | 73 "net/cert_host_pair.cc", |
| 72 "net/cert_host_pair.h", | 74 "net/cert_host_pair.h", |
| 73 "net/cert_policy.cc", | 75 "net/cert_policy.cc", |
| 74 "net/certificate_policy_cache.cc", | 76 "net/certificate_policy_cache.cc", |
| 75 "net/cookie_notification_bridge.h", | 77 "net/cookie_notification_bridge.h", |
| 76 "net/cookie_notification_bridge.mm", | 78 "net/cookie_notification_bridge.mm", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 88 "net/request_tracker_impl.mm", | 90 "net/request_tracker_impl.mm", |
| 89 "net/web_http_protocol_handler_delegate.h", | 91 "net/web_http_protocol_handler_delegate.h", |
| 90 "net/web_http_protocol_handler_delegate.mm", | 92 "net/web_http_protocol_handler_delegate.mm", |
| 91 "payments/payment_request.cc", | 93 "payments/payment_request.cc", |
| 92 "public/active_state_manager.h", | 94 "public/active_state_manager.h", |
| 93 "public/block_types.h", | 95 "public/block_types.h", |
| 94 "public/browser_state.h", | 96 "public/browser_state.h", |
| 95 "public/browser_url_rewriter.h", | 97 "public/browser_url_rewriter.h", |
| 96 "public/cert_policy.h", | 98 "public/cert_policy.h", |
| 97 "public/certificate_policy_cache.h", | 99 "public/certificate_policy_cache.h", |
| 100 "public/crw_navigation_manager_storage.h", |
| 101 "public/crw_navigation_manager_storage.mm", |
| 98 "public/favicon_status.cc", | 102 "public/favicon_status.cc", |
| 99 "public/favicon_status.h", | 103 "public/favicon_status.h", |
| 100 "public/favicon_url.cc", | 104 "public/favicon_url.cc", |
| 101 "public/favicon_url.h", | 105 "public/favicon_url.h", |
| 102 "public/interstitials/web_interstitial.h", | 106 "public/interstitials/web_interstitial.h", |
| 103 "public/interstitials/web_interstitial_delegate.h", | 107 "public/interstitials/web_interstitial_delegate.h", |
| 104 "public/java_script_dialog_callback.h", | 108 "public/java_script_dialog_callback.h", |
| 105 "public/java_script_dialog_presenter.h", | 109 "public/java_script_dialog_presenter.h", |
| 106 "public/java_script_dialog_type.h", | 110 "public/java_script_dialog_type.h", |
| 107 "public/load_committed_details.h", | 111 "public/load_committed_details.h", |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 } | 637 } |
| 634 | 638 |
| 635 grit("resources") { | 639 grit("resources") { |
| 636 source = "ios_web_resources.grd" | 640 source = "ios_web_resources.grd" |
| 637 use_qualified_include = true | 641 use_qualified_include = true |
| 638 outputs = [ | 642 outputs = [ |
| 639 "grit/ios_web_resources.h", | 643 "grit/ios_web_resources.h", |
| 640 "ios_web_resources.pak", | 644 "ios_web_resources.pak", |
| 641 ] | 645 ] |
| 642 } | 646 } |
| OLD | NEW |