Index: build/java.gypi |
diff --git a/build/java.gypi b/build/java.gypi |
index fdcbe576652a7438bd60734f59797f7e171c5215..ad711388a74af486a59279c858e8e6bbdabfd367 100644 |
--- a/build/java.gypi |
+++ b/build/java.gypi |
@@ -83,6 +83,7 @@ |
'variables': { |
'res_dir': '<(java_in_dir)/res', |
'res_crunched_dir': '<(intermediate_dir)/res_crunched', |
+ 'res_ldrtl_dir': '<(intermediate_dir)/res_ldrtl', |
newt (away)
2013/04/24 23:34:38
maybe "res_mirrored_dir"
Kibeom Kim (inactive)
2013/04/25 00:04:39
Done.
|
'res_input_dirs': ['<(res_dir)', '<@(res_extra_dirs)'], |
'resource_input_paths': ['<!@(find <(res_dir) -type f)'], |
'R_dir': '<(intermediate_dir)/java_R', |
@@ -105,7 +106,7 @@ |
# Dependent APKs include this target's resources via |
# additional_res_dirs, additional_res_packages, and |
# additional_R_text_files. |
- 'additional_res_dirs': ['<(res_crunched_dir)', '<@(res_input_dirs)'], |
+ 'additional_res_dirs': ['<(res_crunched_dir)', '<(res_ldrtl_dir)', '<@(res_input_dirs)'], |
'additional_res_packages': ['<(R_package)'], |
'additional_R_text_files': ['<(R_text_file)'], |
}, |
@@ -160,6 +161,8 @@ |
'--res-dirs', '>(all_res_dirs)', |
'--crunch-input-dir', '>(res_dir)', |
'--crunch-output-dir', '<(res_crunched_dir)', |
+ '--xml-ldrtl-input-dir', '<(res_dir)', |
newt (away)
2013/04/24 23:34:38
">(res_dir)"
Kibeom Kim (inactive)
2013/04/25 00:04:39
Hmm.. but strangely it gives an error. It doesn't
|
+ '--xml-ldrtl-output-dir', '<(res_ldrtl_dir)', |
'--android-manifest', '<(android_manifest)', |
'--non-constant-id', |
'--custom-package', '<(R_package)', |