| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 | 7 |
| 8 source_set("web") { | 8 source_set("web") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":core", | 10 ":core", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "navigation/navigation_item_impl.mm", | 56 "navigation/navigation_item_impl.mm", |
| 57 "navigation/navigation_manager_delegate.h", | 57 "navigation/navigation_manager_delegate.h", |
| 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 "navigation/web_load_params.h", | 65 "navigation/web_load_params.h", |
| 66 "navigation/web_load_params.mm", | |
| 67 "net/cert_host_pair.cc", | 66 "net/cert_host_pair.cc", |
| 68 "net/cert_host_pair.h", | 67 "net/cert_host_pair.h", |
| 69 "net/cert_policy.cc", | 68 "net/cert_policy.cc", |
| 70 "net/cert_store_impl.cc", | 69 "net/cert_store_impl.cc", |
| 71 "net/cert_store_impl.h", | 70 "net/cert_store_impl.h", |
| 72 "net/cert_verifier_block_adapter.cc", | 71 "net/cert_verifier_block_adapter.cc", |
| 73 "net/cert_verifier_block_adapter.h", | 72 "net/cert_verifier_block_adapter.h", |
| 74 "net/certificate_policy_cache.cc", | 73 "net/certificate_policy_cache.cc", |
| 75 "net/clients/crw_csp_network_client.h", | 74 "net/clients/crw_csp_network_client.h", |
| 76 "net/clients/crw_csp_network_client.mm", | 75 "net/clients/crw_csp_network_client.mm", |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 public_deps = [ | 458 public_deps = [ |
| 460 ":web_bundle", | 459 ":web_bundle", |
| 461 ] | 460 ] |
| 462 | 461 |
| 463 sources = [ | 462 sources = [ |
| 464 "web_state/js/resources/plugin_placeholder.js", | 463 "web_state/js/resources/plugin_placeholder.js", |
| 465 "web_state/js/resources/window_id.js", | 464 "web_state/js/resources/window_id.js", |
| 466 "webui/resources/web_ui.js", | 465 "webui/resources/web_ui.js", |
| 467 ] | 466 ] |
| 468 } | 467 } |
| OLD | NEW |