| 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") { | 10 source_set("web") { |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "public/web_state/web_state_delegate.h", | 156 "public/web_state/web_state_delegate.h", |
| 157 "public/web_state/web_state_delegate_bridge.h", | 157 "public/web_state/web_state_delegate_bridge.h", |
| 158 "public/web_state/web_state_observer.h", | 158 "public/web_state/web_state_observer.h", |
| 159 "public/web_state/web_state_observer_bridge.h", | 159 "public/web_state/web_state_observer_bridge.h", |
| 160 "public/web_state/web_state_policy_decider.h", | 160 "public/web_state/web_state_policy_decider.h", |
| 161 "public/web_state/web_state_user_data.h", | 161 "public/web_state/web_state_user_data.h", |
| 162 "public/web_thread.h", | 162 "public/web_thread.h", |
| 163 "public/web_thread_delegate.h", | 163 "public/web_thread_delegate.h", |
| 164 "public/web_ui_ios_data_source.h", | 164 "public/web_ui_ios_data_source.h", |
| 165 "public/web_view_creation_util.h", | 165 "public/web_view_creation_util.h", |
| 166 "public/webui/web_ui_ios.h", |
| 167 "public/webui/web_ui_ios_controller.cc", |
| 168 "public/webui/web_ui_ios_controller.h", |
| 169 "public/webui/web_ui_ios_controller_factory.h", |
| 170 "public/webui/web_ui_ios_message_handler.cc", |
| 171 "public/webui/web_ui_ios_message_handler.h", |
| 166 "string_util.cc", | 172 "string_util.cc", |
| 167 "url_scheme_util.mm", | 173 "url_scheme_util.mm", |
| 168 "url_util.cc", | 174 "url_util.cc", |
| 169 "web_kit_constants.cc", | 175 "web_kit_constants.cc", |
| 170 "web_state/blocked_popup_info.h", | 176 "web_state/blocked_popup_info.h", |
| 171 "web_state/blocked_popup_info.mm", | 177 "web_state/blocked_popup_info.mm", |
| 172 "web_state/context_menu_params.mm", | 178 "web_state/context_menu_params.mm", |
| 173 "web_state/credential.cc", | 179 "web_state/credential.cc", |
| 174 "web_state/crw_pass_kit_downloader.h", | 180 "web_state/crw_pass_kit_downloader.h", |
| 175 "web_state/crw_pass_kit_downloader.mm", | 181 "web_state/crw_pass_kit_downloader.mm", |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 } | 564 } |
| 559 | 565 |
| 560 grit("resources") { | 566 grit("resources") { |
| 561 source = "ios_web_resources.grd" | 567 source = "ios_web_resources.grd" |
| 562 use_qualified_include = true | 568 use_qualified_include = true |
| 563 outputs = [ | 569 outputs = [ |
| 564 "grit/ios_web_resources.h", | 570 "grit/ios_web_resources.h", |
| 565 "ios_web_resources.pak", | 571 "ios_web_resources.pak", |
| 566 ] | 572 ] |
| 567 } | 573 } |
| OLD | NEW |