| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "public/url_scheme_util.h", | 119 "public/url_scheme_util.h", |
| 120 "public/url_schemes.h", | 120 "public/url_schemes.h", |
| 121 "public/url_schemes.mm", | 121 "public/url_schemes.mm", |
| 122 "public/url_util.h", | 122 "public/url_util.h", |
| 123 "public/user_metrics.h", | 123 "public/user_metrics.h", |
| 124 "public/web/url_data_source_ios.h", | 124 "public/web/url_data_source_ios.h", |
| 125 "public/web_capabilities.cc", | 125 "public/web_capabilities.cc", |
| 126 "public/web_capabilities.h", | 126 "public/web_capabilities.h", |
| 127 "public/web_client.h", | 127 "public/web_client.h", |
| 128 "public/web_client.mm", | 128 "public/web_client.mm", |
| 129 "public/web_controller_factory.h", | |
| 130 "public/web_controller_factory.mm", | |
| 131 "public/web_kit_constants.h", | 129 "public/web_kit_constants.h", |
| 132 "public/web_state/credential.h", | 130 "public/web_state/credential.h", |
| 133 "public/web_state/crw_web_controller_observer.h", | 131 "public/web_state/crw_web_controller_observer.h", |
| 134 "public/web_state/crw_web_user_interface_delegate.h", | 132 "public/web_state/crw_web_user_interface_delegate.h", |
| 135 "public/web_state/crw_web_view_proxy.h", | 133 "public/web_state/crw_web_view_proxy.h", |
| 136 "public/web_state/crw_web_view_scroll_view_proxy.h", | 134 "public/web_state/crw_web_view_scroll_view_proxy.h", |
| 137 "public/web_state/global_web_state_observer.h", | 135 "public/web_state/global_web_state_observer.h", |
| 138 "public/web_state/js/credential_util.h", | 136 "public/web_state/js/credential_util.h", |
| 139 "public/web_state/js/crw_js_injection_evaluator.h", | 137 "public/web_state/js/crw_js_injection_evaluator.h", |
| 140 "public/web_state/js/crw_js_injection_manager.h", | 138 "public/web_state/js/crw_js_injection_manager.h", |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 ":web_bundle", | 456 ":web_bundle", |
| 459 ] | 457 ] |
| 460 | 458 |
| 461 sources = [ | 459 sources = [ |
| 462 "web_state/js/resources/plugin_placeholder.js", | 460 "web_state/js/resources/plugin_placeholder.js", |
| 463 "web_state/js/resources/post_request.js", | 461 "web_state/js/resources/post_request.js", |
| 464 "web_state/js/resources/window_id.js", | 462 "web_state/js/resources/window_id.js", |
| 465 "webui/resources/web_ui.js", | 463 "webui/resources/web_ui.js", |
| 466 ] | 464 ] |
| 467 } | 465 } |
| OLD | NEW |