OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 'target_name': 'chrome_java', | 531 'target_name': 'chrome_java', |
532 'type': 'none', | 532 'type': 'none', |
533 'dependencies': [ | 533 'dependencies': [ |
534 'activity_type_ids_java', | 534 'activity_type_ids_java', |
535 'browsing_data_type_java', | 535 'browsing_data_type_java', |
536 'chrome_locale_paks', | 536 'chrome_locale_paks', |
537 'chrome_resources.gyp:chrome_strings', | 537 'chrome_resources.gyp:chrome_strings', |
538 'chrome_strings_grd', | 538 'chrome_strings_grd', |
539 'chrome_version_java', | 539 'chrome_version_java', |
540 'content_setting_java', | 540 'content_setting_java', |
| 541 'content_settings_type_java', |
541 'connectivity_check_result_java', | 542 'connectivity_check_result_java', |
542 'data_use_ui_message_enum_java', | 543 'data_use_ui_message_enum_java', |
543 'document_tab_model_info_proto_java', | 544 'document_tab_model_info_proto_java', |
544 'infobar_action_type_java', | 545 'infobar_action_type_java', |
545 'most_visited_tile_type_java', | 546 'most_visited_tile_type_java', |
546 'page_info_connection_type_java', | 547 'page_info_connection_type_java', |
547 'profile_account_management_metrics_java', | 548 'profile_account_management_metrics_java', |
548 'resource_id_java', | 549 'resource_id_java', |
549 'shortcut_source_java', | 550 'shortcut_source_java', |
550 'signin_metrics_enum_java', | 551 'signin_metrics_enum_java', |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 { | 650 { |
650 # GN: //chrome:content_setting_javagen | 651 # GN: //chrome:content_setting_javagen |
651 'target_name': 'content_setting_java', | 652 'target_name': 'content_setting_java', |
652 'type': 'none', | 653 'type': 'none', |
653 'variables': { | 654 'variables': { |
654 'source_file': '../components/content_settings/core/common/content_s
ettings.h', | 655 'source_file': '../components/content_settings/core/common/content_s
ettings.h', |
655 }, | 656 }, |
656 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 657 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
657 }, | 658 }, |
658 { | 659 { |
| 660 # GN: //chrome:content_settings_type_javagen |
| 661 'target_name': 'content_settings_type_java', |
| 662 'type': 'none', |
| 663 'variables': { |
| 664 'source_file': '../components/content_settings/core/common/content_s
ettings_types.cc', |
| 665 }, |
| 666 'includes': [ '../build/android/java_cpp_string.gypi' ], |
| 667 }, |
| 668 { |
659 # GN: //chrome:page_info_connection_type_javagen | 669 # GN: //chrome:page_info_connection_type_javagen |
660 'target_name': 'page_info_connection_type_java', | 670 'target_name': 'page_info_connection_type_java', |
661 'type': 'none', | 671 'type': 'none', |
662 'variables': { | 672 'variables': { |
663 'source_file': 'browser/ui/android/website_settings_popup_android.h'
, | 673 'source_file': 'browser/ui/android/website_settings_popup_android.h'
, |
664 }, | 674 }, |
665 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 675 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
666 }, | 676 }, |
667 { | 677 { |
668 # GN: //chrome:signin_metrics_enum_javagen | 678 # GN: //chrome:signin_metrics_enum_javagen |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
783 # expired. crbug.com/577698 | 793 # expired. crbug.com/577698 |
784 '../components/components.gyp:startup_metric_utils_common', | 794 '../components/components.gyp:startup_metric_utils_common', |
785 ], | 795 ], |
786 }], | 796 }], |
787 ], | 797 ], |
788 }, | 798 }, |
789 ], | 799 ], |
790 }], | 800 }], |
791 ], # 'conditions' | 801 ], # 'conditions' |
792 } | 802 } |
OLD | NEW |