Skip to content

Commit

Permalink
[Android] Generate localized strings.xml files at build time.
Browse files Browse the repository at this point in the history
This generates localized strings.xml files (e.g.
values-fr/strings.xml) from grd and xtb files at build time. This
means we no longer need to check in localized strings.xml files. Note:
the xtb files are empty until translations are available.

Benefits:
 - 41 fewer extraneous results when grepping Java string IDs
 - Switching from maintaining strings in strings.xml over to using a
   grd file is One Trivial CL* away: just include English in the list
   of languages for which we generate strings.xml files.

*Restrictions may apply

BUG=167248

Review URL: https://codereview.chromium.org/11659006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176134 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
newt@chromium.org committed Jan 10, 2013
1 parent 52d1b4e commit b2c548c
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build/grit_action.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
],
'action': ['<@(grit_cmd)',
'-i', '<(grit_grd_file)', 'build',
'-f<(grit_resource_ids)',
'-f', '<(grit_resource_ids)',
'-o', '<(grit_out_dir)',
'<@(grit_defines)' ],
'msvs_cygwin_shell': 0,
Expand Down
36 changes: 33 additions & 3 deletions build/java.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
# R_package - The java package in which the R class (which maps resources to
# integer IDs) should be generated, e.g. org.chromium.content.
# R_package_relpath - Same as R_package, but replace each '.' with '/'.
# java_strings_grd - The name of the grd file from which to generate localized
# strings.xml files, if any.

{
'dependencies': [
Expand All @@ -65,16 +67,19 @@
'generated_R_dirs': [],
'additional_R_files': [],
'has_java_resources%': 0,
'java_strings_grd%': '',
},
'conditions': [
['has_java_resources == 1', {
'variables': {
'res_dir': '<(java_in_dir)/res',
'crunched_res_dir': '<(SHARED_INTERMEDIATE_DIR)/<(package_name)/res',
'out_res_dir': '<(SHARED_INTERMEDIATE_DIR)/<(package_name)/res',
'R_dir': '<(SHARED_INTERMEDIATE_DIR)/<(package_name)/java_R',
'R_file': '<(R_dir)/<(R_package_relpath)/R.java',
'generated_src_dirs': ['<(R_dir)'],
'additional_input_paths': ['<(R_file)'],
# grit_grd_file is used by grit_action.gypi, included below.
'grit_grd_file': '<(java_in_dir)/strings/<(java_strings_grd)',
},
'all_dependent_settings': {
'variables': {
Expand All @@ -85,15 +90,40 @@

# Dependent APKs include this target's resources via
# additional_res_dirs and additional_res_packages.
'additional_res_dirs': ['<(crunched_res_dir)', '<(res_dir)'],
'additional_res_dirs': ['<(out_res_dir)', '<(res_dir)'],
'additional_res_packages': ['<(R_package)'],
},
},
'conditions': [
['java_strings_grd != ""', {
'actions': [
{
'action_name': 'generate_localized_strings_xml',
'variables': {
'grit_out_dir': '<(out_res_dir)',
# resource_ids is unneeded since we don't generate .h headers.
'grit_resource_ids': '',
},
'includes': ['../build/grit_action.gypi'],
},
],
}],
],
'actions': [
# Generate R.java and crunch image resources.
{
'action_name': 'process_resources',
'message': 'processing resources for <(package_name)',
'conditions': [
['java_strings_grd != ""', {
'inputs': [
# TODO(newt): replace this with .../values/strings.xml once
# the English strings.xml is generated as well? That would be
# simpler and faster and should be equivalent.
'<!@pymod_do_main(grit_info <@(grit_defines) --outputs "<(out_res_dir)" <(grit_grd_file))',
],
}],
],
'inputs': [
'<(DEPTH)/build/android/process_resources.py',
'<!@(find <(res_dir) -type f)',
Expand All @@ -108,7 +138,7 @@
'--R-package', '<(R_package)',
'--R-dir', '<(R_dir)',
'--res-dir', '<(res_dir)',
'--crunched-res-dir', '<(crunched_res_dir)',
'--crunched-res-dir', '<(out_res_dir)',
],
},
],
Expand Down
51 changes: 41 additions & 10 deletions build/java_apk.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
# resource_dir - The directory for resources.
# R_package - A custom Java package to generate the resource file R.java in.
# By default, the package given in AndroidManifest.xml will be used.
# java_strings_grd - The name of the grd file from which to generate localized
# strings.xml files, if any.

{
'variables': {
Expand All @@ -78,6 +80,8 @@
'additional_res_dirs': [],
'additional_res_packages': [],
'is_test_apk%': 0,
'java_strings_grd%': '',
'grit_grd_file%': '',
},
'sources': [
'<@(native_libs_paths)'
Expand Down Expand Up @@ -111,6 +115,35 @@
],
},
],
'conditions': [
['R_package != ""', {
'variables': {
# We generate R.java in package R_package (in addition to the package
# listed in the AndroidManifest.xml, which is unavoidable).
'additional_res_dirs': ['<(DEPTH)/build/android/ant/empty/res'],
'additional_res_packages': ['<(R_package)'],
},
}],
['java_strings_grd != ""', {
'variables': {
'out_res_dir': '<(SHARED_INTERMEDIATE_DIR)/<(package_name)_apk/res',
'additional_res_dirs': ['<(out_res_dir)'],
# grit_grd_file is used by grit_action.gypi, included below.
'grit_grd_file': '<(java_in_dir)/strings/<(java_strings_grd)',
},
'actions': [
{
'action_name': 'generate_localized_strings_xml',
'variables': {
'grit_out_dir': '<(out_res_dir)',
# resource_ids is unneeded since we don't generate .h headers.
'grit_resource_ids': '',
},
'includes': ['../build/grit_action.gypi'],
},
],
}],
],
'actions': [
{
'action_name': 'ant_<(package_name)_apk',
Expand All @@ -131,6 +164,14 @@
['resource_dir!=""', {
'inputs': ['<!@(find <(java_in_dir)/<(resource_dir) -name "*")']
}],
['java_strings_grd != ""', {
'inputs': [
# TODO(newt): replace this with .../values/strings.xml once
# the English strings.xml is generated as well? That would be
# simpler and faster and should be equivalent.
'<!@pymod_do_main(grit_info <@(grit_defines) --outputs "<(out_res_dir)" <(grit_grd_file))',
],
}],
['is_test_apk == 1', {
'variables': {
'additional_res_dirs=': [],
Expand Down Expand Up @@ -182,14 +223,4 @@
]
},
],
'conditions': [
['R_package != ""', {
'variables': {
# We generate R.java in package R_package (in addition to the package
# listed in the AndroidManifest.xml, which is unavoidable).
'additional_res_dirs': ['<(DEPTH)/build/android/ant/empty/res'],
'additional_res_packages': ['<(R_package)'],
},
}],
],
}
1 change: 1 addition & 0 deletions chrome/chrome.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -1081,6 +1081,7 @@
'has_java_resources': 1,
'R_package': 'org.chromium.chrome',
'R_package_relpath': 'org/chromium/chrome',
'java_strings_grd': 'android_chrome_strings.grd',
},
'includes': [
'../build/java.gypi',
Expand Down
1 change: 1 addition & 0 deletions content/content.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@
'has_java_resources': 1,
'R_package': 'org.chromium.content',
'R_package_relpath': 'org/chromium/content',
'java_strings_grd': 'android_content_strings.grd',
},
'conditions': [
['android_build_type == 0', {
Expand Down
1 change: 1 addition & 0 deletions ui/ui.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,7 @@
'has_java_resources': 1,
'R_package': 'org.chromium.ui',
'R_package_relpath': 'org/chromium/ui',
'java_strings_grd': 'android_ui_strings.grd',
},
'dependencies': [
'../base/base.gyp:base_java',
Expand Down

0 comments on commit b2c548c

Please sign in to comment.