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

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: missing file Created 5 years 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
« no previous file with comments | « no previous file | ios/web/ios_web_unittests.gyp » ('j') | ios/web/ios_web_unittests.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 'web_state/crw_web_view_scroll_view_proxy.mm', 230 'web_state/crw_web_view_scroll_view_proxy.mm',
231 'web_state/error_translation_util.h', 231 'web_state/error_translation_util.h',
232 'web_state/error_translation_util.mm', 232 'web_state/error_translation_util.mm',
233 'web_state/frame_info.h', 233 'web_state/frame_info.h',
234 'web_state/global_web_state_event_tracker.cc', 234 'web_state/global_web_state_event_tracker.cc',
235 'web_state/global_web_state_event_tracker.h', 235 'web_state/global_web_state_event_tracker.h',
236 'web_state/global_web_state_observer.cc', 236 'web_state/global_web_state_observer.cc',
237 'web_state/js/credential_util.mm', 237 'web_state/js/credential_util.mm',
238 'web_state/js/crw_js_early_script_manager.h', 238 'web_state/js/crw_js_early_script_manager.h',
239 'web_state/js/crw_js_early_script_manager.mm', 239 'web_state/js/crw_js_early_script_manager.mm',
240 'web_state/js/crw_js_post_request_loader.h',
Eugene But (OOO till 7-30) 2015/12/02 17:06:14 Please update GN file as well.
stkhapugin 2015/12/03 15:43:01 Done.
241 'web_state/js/crw_js_post_request_loader.mm',
240 'web_state/js/crw_js_injection_manager.mm', 242 'web_state/js/crw_js_injection_manager.mm',
241 'web_state/js/crw_js_injection_receiver.mm', 243 'web_state/js/crw_js_injection_receiver.mm',
242 'web_state/js/crw_js_invoke_parameter_queue.h', 244 'web_state/js/crw_js_invoke_parameter_queue.h',
243 'web_state/js/crw_js_invoke_parameter_queue.mm', 245 'web_state/js/crw_js_invoke_parameter_queue.mm',
244 'web_state/js/crw_js_plugin_placeholder_manager.h', 246 'web_state/js/crw_js_plugin_placeholder_manager.h',
245 'web_state/js/crw_js_plugin_placeholder_manager.mm', 247 'web_state/js/crw_js_plugin_placeholder_manager.mm',
246 'web_state/js/crw_js_window_id_manager.h', 248 'web_state/js/crw_js_window_id_manager.h',
247 'web_state/js/crw_js_window_id_manager.mm', 249 'web_state/js/crw_js_window_id_manager.mm',
248 'web_state/js/page_script_util.h', 250 'web_state/js/page_script_util.h',
249 'web_state/js/page_script_util.mm', 251 'web_state/js/page_script_util.mm',
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 }, 416 },
415 { 417 {
416 # GN version: //ios/web:js_resources 418 # GN version: //ios/web:js_resources
417 'target_name': 'js_resources', 419 'target_name': 'js_resources',
418 'type': 'none', 420 'type': 'none',
419 'dependencies': [ 421 'dependencies': [
420 'ios_web_js_bundle_ui', 422 'ios_web_js_bundle_ui',
421 'ios_web_js_bundle_wk', 423 'ios_web_js_bundle_wk',
422 ], 424 ],
423 'sources': [ 425 'sources': [
426 'web_state/js/resources/post_request.js',
424 'web_state/js/resources/plugin_placeholder.js', 427 'web_state/js/resources/plugin_placeholder.js',
425 'web_state/js/resources/window_id.js', 428 'web_state/js/resources/window_id.js',
426 'webui/resources/web_ui.js', 429 'webui/resources/web_ui.js',
427 ], 430 ],
428 'link_settings': { 431 'link_settings': {
429 'mac_bundle_resources': [ 432 'mac_bundle_resources': [
433 '<(SHARED_INTERMEDIATE_DIR)/post_request.js',
430 '<(SHARED_INTERMEDIATE_DIR)/plugin_placeholder.js', 434 '<(SHARED_INTERMEDIATE_DIR)/plugin_placeholder.js',
431 '<(SHARED_INTERMEDIATE_DIR)/window_id.js', 435 '<(SHARED_INTERMEDIATE_DIR)/window_id.js',
432 '<(SHARED_INTERMEDIATE_DIR)/web_ui.js', 436 '<(SHARED_INTERMEDIATE_DIR)/web_ui.js',
433 ], 437 ],
434 }, 438 },
435 'includes': [ 439 'includes': [
436 'js_compile_checked.gypi' 440 'js_compile_checked.gypi'
437 ], 441 ],
438 }, 442 },
439 { 443 {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 'dependencies': [ 507 'dependencies': [
504 '../../base/base.gyp:base' 508 '../../base/base.gyp:base'
505 ], 509 ],
506 'sources': [ 510 'sources': [
507 'public/user_agent.h', 511 'public/user_agent.h',
508 'public/user_agent.mm', 512 'public/user_agent.mm',
509 ], 513 ],
510 }, 514 },
511 ], 515 ],
512 } 516 }
OLDNEW
« no previous file with comments | « no previous file | ios/web/ios_web_unittests.gyp » ('j') | ios/web/ios_web_unittests.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698