OLD | NEW |
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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 'web_state/error_translation_util.h', | 225 'web_state/error_translation_util.h', |
226 'web_state/error_translation_util.mm', | 226 'web_state/error_translation_util.mm', |
227 'web_state/frame_info.h', | 227 'web_state/frame_info.h', |
228 'web_state/global_web_state_event_tracker.cc', | 228 'web_state/global_web_state_event_tracker.cc', |
229 'web_state/global_web_state_event_tracker.h', | 229 'web_state/global_web_state_event_tracker.h', |
230 'web_state/global_web_state_observer.cc', | 230 'web_state/global_web_state_observer.cc', |
231 'web_state/js/credential_util.h', | 231 'web_state/js/credential_util.h', |
232 'web_state/js/credential_util.mm', | 232 'web_state/js/credential_util.mm', |
233 'web_state/js/crw_js_early_script_manager.h', | 233 'web_state/js/crw_js_early_script_manager.h', |
234 'web_state/js/crw_js_early_script_manager.mm', | 234 'web_state/js/crw_js_early_script_manager.mm', |
| 235 'web_state/js/crw_js_post_request_loader.h', |
| 236 'web_state/js/crw_js_post_request_loader.mm', |
235 'web_state/js/crw_js_injection_manager.mm', | 237 'web_state/js/crw_js_injection_manager.mm', |
236 'web_state/js/crw_js_injection_receiver.mm', | 238 'web_state/js/crw_js_injection_receiver.mm', |
237 'web_state/js/crw_js_invoke_parameter_queue.h', | 239 'web_state/js/crw_js_invoke_parameter_queue.h', |
238 'web_state/js/crw_js_invoke_parameter_queue.mm', | 240 'web_state/js/crw_js_invoke_parameter_queue.mm', |
239 'web_state/js/crw_js_plugin_placeholder_manager.h', | 241 'web_state/js/crw_js_plugin_placeholder_manager.h', |
240 'web_state/js/crw_js_plugin_placeholder_manager.mm', | 242 'web_state/js/crw_js_plugin_placeholder_manager.mm', |
241 'web_state/js/crw_js_window_id_manager.h', | 243 'web_state/js/crw_js_window_id_manager.h', |
242 'web_state/js/crw_js_window_id_manager.mm', | 244 'web_state/js/crw_js_window_id_manager.mm', |
243 'web_state/js/page_script_util.h', | 245 'web_state/js/page_script_util.h', |
244 'web_state/js/page_script_util.mm', | 246 'web_state/js/page_script_util.mm', |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 }, | 411 }, |
410 { | 412 { |
411 # GN version: //ios/web:js_resources | 413 # GN version: //ios/web:js_resources |
412 'target_name': 'js_resources', | 414 'target_name': 'js_resources', |
413 'type': 'none', | 415 'type': 'none', |
414 'dependencies': [ | 416 'dependencies': [ |
415 'ios_web_js_bundle_ui', | 417 'ios_web_js_bundle_ui', |
416 'ios_web_js_bundle_wk', | 418 'ios_web_js_bundle_wk', |
417 ], | 419 ], |
418 'sources': [ | 420 'sources': [ |
| 421 'web_state/js/resources/post_request.js', |
419 'web_state/js/resources/plugin_placeholder.js', | 422 'web_state/js/resources/plugin_placeholder.js', |
420 'web_state/js/resources/window_id.js', | 423 'web_state/js/resources/window_id.js', |
421 'webui/resources/web_ui.js', | 424 'webui/resources/web_ui.js', |
422 ], | 425 ], |
423 'link_settings': { | 426 'link_settings': { |
424 'mac_bundle_resources': [ | 427 'mac_bundle_resources': [ |
| 428 '<(SHARED_INTERMEDIATE_DIR)/post_request.js', |
425 '<(SHARED_INTERMEDIATE_DIR)/plugin_placeholder.js', | 429 '<(SHARED_INTERMEDIATE_DIR)/plugin_placeholder.js', |
426 '<(SHARED_INTERMEDIATE_DIR)/window_id.js', | 430 '<(SHARED_INTERMEDIATE_DIR)/window_id.js', |
427 '<(SHARED_INTERMEDIATE_DIR)/web_ui.js', | 431 '<(SHARED_INTERMEDIATE_DIR)/web_ui.js', |
428 ], | 432 ], |
429 }, | 433 }, |
430 'includes': [ | 434 'includes': [ |
431 'js_compile_checked.gypi' | 435 'js_compile_checked.gypi' |
432 ], | 436 ], |
433 }, | 437 }, |
434 { | 438 { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 'dependencies': [ | 498 'dependencies': [ |
495 '../../base/base.gyp:base' | 499 '../../base/base.gyp:base' |
496 ], | 500 ], |
497 'sources': [ | 501 'sources': [ |
498 'public/user_agent.h', | 502 'public/user_agent.h', |
499 'public/user_agent.mm', | 503 'public/user_agent.mm', |
500 ], | 504 ], |
501 }, | 505 }, |
502 ], | 506 ], |
503 } | 507 } |
OLD | NEW |