| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 68 "net/cert_store_impl.cc", |
| 69 "net/cert_store_impl.h", | 69 "net/cert_store_impl.h", |
| 70 "net/cert_verifier_block_adapter.cc", | |
| 71 "net/cert_verifier_block_adapter.h", | 70 "net/cert_verifier_block_adapter.h", |
| 71 "net/cert_verifier_block_adapter.mm", |
| 72 "net/certificate_policy_cache.cc", | 72 "net/certificate_policy_cache.cc", |
| 73 "net/clients/crw_csp_network_client.h", | 73 "net/clients/crw_csp_network_client.h", |
| 74 "net/clients/crw_csp_network_client.mm", | 74 "net/clients/crw_csp_network_client.mm", |
| 75 "net/clients/crw_js_injection_network_client.h", | 75 "net/clients/crw_js_injection_network_client.h", |
| 76 "net/clients/crw_js_injection_network_client.mm", | 76 "net/clients/crw_js_injection_network_client.mm", |
| 77 "net/clients/crw_js_injection_network_client_factory.h", | 77 "net/clients/crw_js_injection_network_client_factory.h", |
| 78 "net/clients/crw_js_injection_network_client_factory.mm", | 78 "net/clients/crw_js_injection_network_client_factory.mm", |
| 79 "net/clients/crw_passkit_delegate.h", | 79 "net/clients/crw_passkit_delegate.h", |
| 80 "net/clients/crw_passkit_network_client.h", | 80 "net/clients/crw_passkit_network_client.h", |
| 81 "net/clients/crw_passkit_network_client.mm", | 81 "net/clients/crw_passkit_network_client.mm", |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 public_deps = [ | 476 public_deps = [ |
| 477 ":web_bundle", | 477 ":web_bundle", |
| 478 ] | 478 ] |
| 479 | 479 |
| 480 sources = [ | 480 sources = [ |
| 481 "web_state/js/resources/plugin_placeholder.js", | 481 "web_state/js/resources/plugin_placeholder.js", |
| 482 "web_state/js/resources/window_id.js", | 482 "web_state/js/resources/window_id.js", |
| 483 "webui/resources/web_ui.js", | 483 "webui/resources/web_ui.js", |
| 484 ] | 484 ] |
| 485 } | 485 } |
| OLD | NEW |