Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: ios/web/ios_web.gyp

Issue 1375023002: Adds support for POST request with bodies on WKWebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rest of the commetns Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 'web_state/crw_web_view_proxy_impl.h', 227 'web_state/crw_web_view_proxy_impl.h',
228 'web_state/crw_web_view_proxy_impl.mm', 228 'web_state/crw_web_view_proxy_impl.mm',
229 'web_state/crw_web_view_scroll_view_proxy.mm', 229 'web_state/crw_web_view_scroll_view_proxy.mm',
230 'web_state/error_translation_util.h', 230 'web_state/error_translation_util.h',
231 'web_state/error_translation_util.mm', 231 'web_state/error_translation_util.mm',
232 'web_state/frame_info.h', 232 'web_state/frame_info.h',
233 'web_state/js/credential_util.h', 233 'web_state/js/credential_util.h',
234 'web_state/js/credential_util.mm', 234 'web_state/js/credential_util.mm',
235 'web_state/js/crw_js_early_script_manager.h', 235 'web_state/js/crw_js_early_script_manager.h',
236 'web_state/js/crw_js_early_script_manager.mm', 236 'web_state/js/crw_js_early_script_manager.mm',
237 'web_state/js/crw_js_post_request_loader.h',
238 'web_state/js/crw_js_post_request_loader.mm',
237 'web_state/js/crw_js_injection_manager.mm', 239 'web_state/js/crw_js_injection_manager.mm',
238 'web_state/js/crw_js_injection_receiver.mm', 240 'web_state/js/crw_js_injection_receiver.mm',
239 'web_state/js/crw_js_invoke_parameter_queue.h', 241 'web_state/js/crw_js_invoke_parameter_queue.h',
240 'web_state/js/crw_js_invoke_parameter_queue.mm', 242 'web_state/js/crw_js_invoke_parameter_queue.mm',
241 'web_state/js/crw_js_plugin_placeholder_manager.h', 243 'web_state/js/crw_js_plugin_placeholder_manager.h',
242 'web_state/js/crw_js_plugin_placeholder_manager.mm', 244 'web_state/js/crw_js_plugin_placeholder_manager.mm',
243 'web_state/js/crw_js_window_id_manager.h', 245 'web_state/js/crw_js_window_id_manager.h',
244 'web_state/js/crw_js_window_id_manager.mm', 246 'web_state/js/crw_js_window_id_manager.mm',
245 'web_state/js/page_script_util.h', 247 'web_state/js/page_script_util.h',
246 'web_state/js/page_script_util.mm', 248 'web_state/js/page_script_util.mm',
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 ], 439 ],
438 }, 440 },
439 { 441 {
440 'target_name': 'js_resources', 442 'target_name': 'js_resources',
441 'type': 'none', 443 'type': 'none',
442 'dependencies': [ 444 'dependencies': [
443 'ios_web_js_bundle_ui', 445 'ios_web_js_bundle_ui',
444 'ios_web_js_bundle_wk', 446 'ios_web_js_bundle_wk',
445 ], 447 ],
446 'sources': [ 448 'sources': [
449 'web_state/js/resources/post_request.js',
447 'web_state/js/resources/plugin_placeholder.js', 450 'web_state/js/resources/plugin_placeholder.js',
448 'web_state/js/resources/window_id.js', 451 'web_state/js/resources/window_id.js',
449 'webui/resources/web_ui.js', 452 'webui/resources/web_ui.js',
450 ], 453 ],
451 'link_settings': { 454 'link_settings': {
452 'mac_bundle_resources': [ 455 'mac_bundle_resources': [
456 '<(SHARED_INTERMEDIATE_DIR)/post_request.js',
453 '<(SHARED_INTERMEDIATE_DIR)/plugin_placeholder.js', 457 '<(SHARED_INTERMEDIATE_DIR)/plugin_placeholder.js',
454 '<(SHARED_INTERMEDIATE_DIR)/window_id.js', 458 '<(SHARED_INTERMEDIATE_DIR)/window_id.js',
455 '<(SHARED_INTERMEDIATE_DIR)/web_ui.js', 459 '<(SHARED_INTERMEDIATE_DIR)/web_ui.js',
456 ], 460 ],
457 }, 461 },
458 'includes': [ 462 'includes': [
459 'js_compile_checked.gypi' 463 'js_compile_checked.gypi'
460 ], 464 ],
461 }, 465 },
462 { 466 {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 'dependencies': [ 558 'dependencies': [
555 '../../base/base.gyp:base' 559 '../../base/base.gyp:base'
556 ], 560 ],
557 'sources': [ 561 'sources': [
558 'public/user_agent.h', 562 'public/user_agent.h',
559 'public/user_agent.mm', 563 'public/user_agent.mm',
560 ], 564 ],
561 }, 565 },
562 ], 566 ],
563 } 567 }
OLDNEW
« no previous file with comments | « no previous file | ios/web/web_state/js/crw_js_post_request_loader.h » ('j') | ios/web/web_state/js/crw_js_post_request_loader.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698