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

Side by Side Diff: ios/chrome/ios_chrome.gyp

Issue 2107743002: Add InfoBarPickerController for displaying a picker view from an infobar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@update_passwords_strings
Patch Set: Rename InfoBarPickerController to InfoBarPickerViewController Created 4 years, 5 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 {
11 # GN version: //ios/chrome/app 11 # GN version: //ios/chrome/app
12 'target_name': 'ios_chrome_app', 12 'target_name': 'ios_chrome_app',
13 'type': 'static_library', 13 'type': 'static_library',
14 'include_dirs': [ 14 'include_dirs': [
15 '../..', 15 '../..',
16 ], 16 ],
17 'dependencies': [ 17 'dependencies': [
18 '../../base/base.gyp:base', 18 '../../base/base.gyp:base',
19 'ios_chrome_browser', 19 'ios_chrome_browser',
20 ], 20 ],
21 'link_settings': { 21 'link_settings': {
22 'libraries': [ 22 'libraries': [
23 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 23 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
24 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', 24 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
25 ], 25 ],
26 }, 26 },
27 'sources': [ 27 'sources': [
28 'app/UIApplication+ExitsOnSuspend.h',
29 'app/UIApplication+ExitsOnSuspend.mm',
28 'app/application_delegate/memory_warning_helper.h', 30 'app/application_delegate/memory_warning_helper.h',
29 'app/application_delegate/memory_warning_helper.mm', 31 'app/application_delegate/memory_warning_helper.mm',
30 'app/UIApplication+ExitsOnSuspend.h',
31 'app/UIApplication+ExitsOnSuspend.mm',
32 'app/deferred_initialization_runner.h', 32 'app/deferred_initialization_runner.h',
33 'app/deferred_initialization_runner.mm', 33 'app/deferred_initialization_runner.mm',
34 'app/safe_mode_crashing_modules_config.h', 34 'app/safe_mode_crashing_modules_config.h',
35 'app/safe_mode_crashing_modules_config.mm', 35 'app/safe_mode_crashing_modules_config.mm',
36 'app/safe_mode_util.cc', 36 'app/safe_mode_util.cc',
37 'app/safe_mode_util.h', 37 'app/safe_mode_util.h',
38 ], 38 ],
39 }, 39 },
40 { 40 {
41 # GN version: //ios/chrome/browser 41 # GN version: //ios/chrome/browser
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 'browser/infobars/infobar.h', 332 'browser/infobars/infobar.h',
333 'browser/infobars/infobar.mm', 333 'browser/infobars/infobar.mm',
334 'browser/infobars/infobar_container_ios.h', 334 'browser/infobars/infobar_container_ios.h',
335 'browser/infobars/infobar_container_ios.mm', 335 'browser/infobars/infobar_container_ios.mm',
336 'browser/infobars/infobar_container_view.h', 336 'browser/infobars/infobar_container_view.h',
337 'browser/infobars/infobar_container_view.mm', 337 'browser/infobars/infobar_container_view.mm',
338 'browser/infobars/infobar_controller.h', 338 'browser/infobars/infobar_controller.h',
339 'browser/infobars/infobar_controller.mm', 339 'browser/infobars/infobar_controller.mm',
340 'browser/infobars/infobar_manager_impl.h', 340 'browser/infobars/infobar_manager_impl.h',
341 'browser/infobars/infobar_manager_impl.mm', 341 'browser/infobars/infobar_manager_impl.mm',
342 'browser/infobars/infobar_picker_coordinator.h',
343 'browser/infobars/infobar_picker_coordinator.mm',
344 'browser/infobars/infobar_picker_view_controller.h',
345 'browser/infobars/infobar_picker_view_controller.mm',
342 'browser/infobars/infobar_utils.h', 346 'browser/infobars/infobar_utils.h',
343 'browser/infobars/infobar_utils.mm', 347 'browser/infobars/infobar_utils.mm',
344 'browser/install_time_util.h', 348 'browser/install_time_util.h',
345 'browser/install_time_util.mm', 349 'browser/install_time_util.mm',
346 'browser/installation_notifier.h', 350 'browser/installation_notifier.h',
347 'browser/installation_notifier.mm', 351 'browser/installation_notifier.mm',
348 'browser/interstitials/ios_chrome_controller_client.h', 352 'browser/interstitials/ios_chrome_controller_client.h',
349 'browser/interstitials/ios_chrome_controller_client.mm', 353 'browser/interstitials/ios_chrome_controller_client.mm',
350 'browser/interstitials/ios_chrome_metrics_helper.h', 354 'browser/interstitials/ios_chrome_metrics_helper.h',
351 'browser/interstitials/ios_chrome_metrics_helper.mm', 355 'browser/interstitials/ios_chrome_metrics_helper.mm',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 'browser/net/ios_chrome_url_request_context_getter.h', 406 'browser/net/ios_chrome_url_request_context_getter.h',
403 'browser/net/metrics_network_client.h', 407 'browser/net/metrics_network_client.h',
404 'browser/net/metrics_network_client.mm', 408 'browser/net/metrics_network_client.mm',
405 'browser/net/metrics_network_client_manager.h', 409 'browser/net/metrics_network_client_manager.h',
406 'browser/net/metrics_network_client_manager.mm', 410 'browser/net/metrics_network_client_manager.mm',
407 'browser/net/net_types.h', 411 'browser/net/net_types.h',
408 'browser/net/proxy_service_factory.cc', 412 'browser/net/proxy_service_factory.cc',
409 'browser/net/proxy_service_factory.h', 413 'browser/net/proxy_service_factory.h',
410 'browser/net/retryable_url_fetcher.h', 414 'browser/net/retryable_url_fetcher.h',
411 'browser/net/retryable_url_fetcher.mm', 415 'browser/net/retryable_url_fetcher.mm',
416 'browser/notification_promo.cc',
412 'browser/notification_promo.h', 417 'browser/notification_promo.h',
413 'browser/notification_promo.cc',
414 'browser/ntp_snippets/ios_chrome_ntp_snippets_service_factory.cc', 418 'browser/ntp_snippets/ios_chrome_ntp_snippets_service_factory.cc',
415 'browser/ntp_snippets/ios_chrome_ntp_snippets_service_factory.h', 419 'browser/ntp_snippets/ios_chrome_ntp_snippets_service_factory.h',
416 'browser/open_from_clipboard/create_clipboard_recent_content.h', 420 'browser/open_from_clipboard/create_clipboard_recent_content.h',
417 'browser/open_from_clipboard/create_clipboard_recent_content.mm', 421 'browser/open_from_clipboard/create_clipboard_recent_content.mm',
418 'browser/passwords/credential_manager.h', 422 'browser/passwords/credential_manager.h',
419 'browser/passwords/credential_manager.mm', 423 'browser/passwords/credential_manager.mm',
420 'browser/passwords/ios_chrome_password_manager_client.h', 424 'browser/passwords/ios_chrome_password_manager_client.h',
421 'browser/passwords/ios_chrome_password_manager_client.mm', 425 'browser/passwords/ios_chrome_password_manager_client.mm',
422 'browser/passwords/ios_chrome_password_manager_driver.h', 426 'browser/passwords/ios_chrome_password_manager_driver.h',
423 'browser/passwords/ios_chrome_password_manager_driver.mm', 427 'browser/passwords/ios_chrome_password_manager_driver.mm',
(...skipping 29 matching lines...) Expand all
453 'browser/prefs/ios_chrome_pref_model_associator_client.h', 457 'browser/prefs/ios_chrome_pref_model_associator_client.h',
454 'browser/prefs/ios_chrome_pref_service_factory.cc', 458 'browser/prefs/ios_chrome_pref_service_factory.cc',
455 'browser/prefs/ios_chrome_pref_service_factory.h', 459 'browser/prefs/ios_chrome_pref_service_factory.h',
456 'browser/prefs/pref_observer_bridge.h', 460 'browser/prefs/pref_observer_bridge.h',
457 'browser/prefs/pref_observer_bridge.mm', 461 'browser/prefs/pref_observer_bridge.mm',
458 'browser/procedural_block_types.h', 462 'browser/procedural_block_types.h',
459 'browser/reading_list/reading_list_entry.cc', 463 'browser/reading_list/reading_list_entry.cc',
460 'browser/reading_list/reading_list_entry.h', 464 'browser/reading_list/reading_list_entry.h',
461 'browser/reading_list/reading_list_model.cc', 465 'browser/reading_list/reading_list_model.cc',
462 'browser/reading_list/reading_list_model.h', 466 'browser/reading_list/reading_list_model.h',
467 'browser/reading_list/reading_list_model_factory.cc',
468 'browser/reading_list/reading_list_model_factory.h',
463 'browser/reading_list/reading_list_model_impl.cc', 469 'browser/reading_list/reading_list_model_impl.cc',
464 'browser/reading_list/reading_list_model_impl.h', 470 'browser/reading_list/reading_list_model_impl.h',
465 'browser/reading_list/reading_list_model_observer.h', 471 'browser/reading_list/reading_list_model_observer.h',
466 'browser/reading_list/reading_list_model_factory.cc',
467 'browser/reading_list/reading_list_model_factory.h',
468 'browser/reading_list/reading_list_model_observer.h', 472 'browser/reading_list/reading_list_model_observer.h',
469 'browser/reading_list/reading_list_model_storage.h', 473 'browser/reading_list/reading_list_model_storage.h',
470 'browser/reading_list/reading_list_model_storage_defaults.h', 474 'browser/reading_list/reading_list_model_storage_defaults.h',
471 'browser/reading_list/reading_list_model_storage_defaults.mm', 475 'browser/reading_list/reading_list_model_storage_defaults.mm',
472 'browser/search/search_util.h', 476 'browser/search/search_util.h',
473 'browser/search/search_util.mm', 477 'browser/search/search_util.mm',
474 'browser/search_engines/search_engines_util.cc', 478 'browser/search_engines/search_engines_util.cc',
475 'browser/search_engines/search_engines_util.h', 479 'browser/search_engines/search_engines_util.h',
476 'browser/search_engines/template_url_service_client_impl.cc', 480 'browser/search_engines/template_url_service_client_impl.cc',
477 'browser/search_engines/template_url_service_client_impl.h', 481 'browser/search_engines/template_url_service_client_impl.h',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 '../../components/components.gyp:omnibox_browser', 884 '../../components/components.gyp:omnibox_browser',
881 '../../components/components.gyp:rlz', 885 '../../components/components.gyp:rlz',
882 '../../components/components.gyp:search_engines', 886 '../../components/components.gyp:search_engines',
883 '../../rlz/rlz.gyp:rlz_lib', 887 '../../rlz/rlz.gyp:rlz_lib',
884 ], 888 ],
885 }, 889 },
886 ], 890 ],
887 }], 891 }],
888 ], 892 ],
889 } 893 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/infobars/infobar_picker_view_controller_unittest.mm ('k') | ios/chrome/ios_chrome_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698