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

Side by Side Diff: chrome/chrome.gyp

Issue 1678943002: DataUse UI strings should be changeable via Finch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: autogen enum and more changes Created 4 years, 10 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 (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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'content_settings_type_java',
542 'connectivity_check_result_java', 542 'connectivity_check_result_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',
551 'tab_load_status_java', 552 'tab_load_status_java',
552 '../base/base.gyp:base', 553 '../base/base.gyp:base',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 }, 677 },
677 { 678 {
678 # GN: //chrome:signin_metrics_enum_javagen 679 # GN: //chrome:signin_metrics_enum_javagen
679 'target_name': 'signin_metrics_enum_java', 680 'target_name': 'signin_metrics_enum_java',
680 'type': 'none', 681 'type': 'none',
681 'variables': { 682 'variables': {
682 'source_file': '../components/signin/core/browser/signin_metrics.h', 683 'source_file': '../components/signin/core/browser/signin_metrics.h',
683 }, 684 },
684 'includes': [ '../build/android/java_cpp_enum.gypi' ], 685 'includes': [ '../build/android/java_cpp_enum.gypi' ],
685 }, 686 },
687 {
688 # GN: //chrome:data_use_ui_message_enum_javagen
689 'target_name': 'data_use_ui_message_enum_java',
690 'type': 'none',
691 'variables': {
692 'source_file': '../chrome/browser/android/data_usage/data_use_tab_ui _manager_android.cc',
sky 2016/02/09 20:33:14 Why do you have ../chrome here? Can't you just hav
Raj 2016/02/09 20:58:20 Done.
693 },
694 'includes': [ '../build/android/java_cpp_enum.gypi' ],
695 },
686 ], # 'targets' 696 ], # 'targets'
687 'includes': [ 697 'includes': [
688 'chrome_android.gypi', 698 'chrome_android.gypi',
689 ]}, # 'includes' 699 ]}, # 'includes'
690 ], # OS=="android" 700 ], # OS=="android"
691 ['configuration_policy==1 and OS!="android" and OS!="ios"', { 701 ['configuration_policy==1 and OS!="android" and OS!="ios"', {
692 'includes': [ 'policy.gypi', ], 702 'includes': [ 'policy.gypi', ],
693 }], 703 }],
694 ['enable_extensions==1', { 704 ['enable_extensions==1', {
695 'includes': [ 705 'includes': [
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 # expired. crbug.com/577698 794 # expired. crbug.com/577698
785 '../components/components.gyp:startup_metric_utils_common', 795 '../components/components.gyp:startup_metric_utils_common',
786 ], 796 ],
787 }], 797 }],
788 ], 798 ],
789 }, 799 },
790 ], 800 ],
791 }], 801 }],
792 ], # 'conditions' 802 ], # 'conditions'
793 } 803 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698