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

Side by Side Diff: chrome/chrome.gyp

Issue 270633015: [android] Generate strings.xml for android_webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
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 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 ['OS=="android"', 972 ['OS=="android"',
973 { 973 {
974 'targets': [ 974 'targets': [
975 { 975 {
976 'target_name': 'chrome_java', 976 'target_name': 'chrome_java',
977 'type': 'none', 977 'type': 'none',
978 'dependencies': [ 978 'dependencies': [
979 'activity_type_ids_java', 979 'activity_type_ids_java',
980 'app_banner_metrics_ids_java', 980 'app_banner_metrics_ids_java',
981 'chrome_resources.gyp:chrome_strings', 981 'chrome_resources.gyp:chrome_strings',
982 'chrome_strings_grd',
982 'profile_sync_service_model_type_selection_java', 983 'profile_sync_service_model_type_selection_java',
983 'resource_id_java', 984 'resource_id_java',
984 'toolbar_model_security_levels_java', 985 'toolbar_model_security_levels_java',
985 'tab_load_status_java', 986 'tab_load_status_java',
986 '../base/base.gyp:base', 987 '../base/base.gyp:base',
987 '../components/components.gyp:autofill_java', 988 '../components/components.gyp:autofill_java',
988 '../components/components.gyp:dom_distiller_core_java', 989 '../components/components.gyp:dom_distiller_core_java',
989 '../components/components.gyp:navigation_interception_java', 990 '../components/components.gyp:navigation_interception_java',
990 '../components/components.gyp:sessions', 991 '../components/components.gyp:sessions',
991 '../components/components.gyp:web_contents_delegate_android_java', 992 '../components/components.gyp:web_contents_delegate_android_java',
992 '../content/content.gyp:content_java', 993 '../content/content.gyp:content_java',
993 '../printing/printing.gyp:printing_java', 994 '../printing/printing.gyp:printing_java',
994 '../sync/sync.gyp:sync_java', 995 '../sync/sync.gyp:sync_java',
995 '../third_party/guava/guava.gyp:guava_javalib', 996 '../third_party/guava/guava.gyp:guava_javalib',
996 '../ui/android/ui_android.gyp:ui_java', 997 '../ui/android/ui_android.gyp:ui_java',
997 ], 998 ],
998 'variables': { 999 'variables': {
999 'java_in_dir': '../chrome/android/java', 1000 'java_in_dir': '../chrome/android/java',
1000 'has_java_resources': 1, 1001 'has_java_resources': 1,
1001 'R_package': 'org.chromium.chrome', 1002 'R_package': 'org.chromium.chrome',
1002 'R_package_relpath': 'org/chromium/chrome', 1003 'R_package_relpath': 'org/chromium/chrome',
1003 'java_strings_grd': 'android_chrome_strings.grd',
1004 # Include xml string files generated from generated_resources.grd 1004 # Include xml string files generated from generated_resources.grd
1005 'res_extra_dirs': ['<(SHARED_INTERMEDIATE_DIR)/chrome/java/res'], 1005 'res_extra_dirs': ['<(SHARED_INTERMEDIATE_DIR)/chrome/java/res'],
1006 'res_extra_files': ['<!@pymod_do_main(grit_info <@(grit_defines) --o utputs "<(SHARED_INTERMEDIATE_DIR)/chrome" app/generated_resources.grd)'], 1006 'res_extra_files': ['<!@pymod_do_main(grit_info <@(grit_defines) --o utputs "<(SHARED_INTERMEDIATE_DIR)/chrome" app/generated_resources.grd)'],
1007 }, 1007 },
1008 'includes': [ 1008 'includes': [
1009 '../build/java.gypi', 1009 '../build/java.gypi',
1010 ], 1010 ],
1011 }, 1011 },
1012 {
1013 'target_name': 'chrome_strings_grd',
1014 'type': 'none',
1015 'variables': {
1016 'grd_file': '../chrome/android/java/strings/android_chrome_strings.g rd',
1017 },
1018 'includes': [
1019 '../build/java_strings_grd.gypi',
1020 ],
1021 },
1012 ], # 'targets' 1022 ], # 'targets'
1013 'includes': [ 1023 'includes': [
1014 'chrome_android.gypi', 1024 'chrome_android.gypi',
1015 ]}, # 'includes' 1025 ]}, # 'includes'
1016 ], # OS=="android" 1026 ], # OS=="android"
1017 ['configuration_policy==1 and OS!="android" and OS!="ios"', { 1027 ['configuration_policy==1 and OS!="android" and OS!="ios"', {
1018 'includes': [ 'policy.gypi', ], 1028 'includes': [ 'policy.gypi', ],
1019 }], 1029 }],
1020 ['enable_printing==1', { 1030 ['enable_printing==1', {
1021 'targets': [ 1031 'targets': [
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 'sources': [ 1104 'sources': [
1095 'service/cloud_print/print_system_dummy.cc', 1105 'service/cloud_print/print_system_dummy.cc',
1096 ], 1106 ],
1097 }], 1107 }],
1098 ], 1108 ],
1099 }, 1109 },
1100 ], 1110 ],
1101 }], 1111 }],
1102 ], # 'conditions' 1112 ], # 'conditions'
1103 } 1113 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698