summaryrefslogtreecommitdiffstats
path: root/build/java_apk.gypi
diff options
context:
space:
mode:
authorcjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-27 05:42:45 +0000
committercjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-27 05:42:45 +0000
commit15a55ac9a77eacffbdc8d5f4507b408de64fb6c4 (patch)
tree7cdb2351418c835d5e3de21f033ac7e3fe1742f9 /build/java_apk.gypi
parent1f26039392175eab0519811e232c379709cddce4 (diff)
downloadchromium_src-15a55ac9a77eacffbdc8d5f4507b408de64fb6c4.zip
chromium_src-15a55ac9a77eacffbdc8d5f4507b408de64fb6c4.tar.gz
chromium_src-15a55ac9a77eacffbdc8d5f4507b408de64fb6c4.tar.bz2
Remove apk-codegen.xml
process_resources.py already implements almost everything from apk-codegen.xml so just use that instead. BUG=359249, 375324, 375431 TBR=yfriedman Review URL: https://codereview.chromium.org/306453003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272928 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/java_apk.gypi')
-rw-r--r--build/java_apk.gypi55
1 files changed, 29 insertions, 26 deletions
diff --git a/build/java_apk.gypi b/build/java_apk.gypi
index d083afc..66bf65d 100644
--- a/build/java_apk.gypi
+++ b/build/java_apk.gypi
@@ -59,8 +59,10 @@
'generated_src_dirs': [],
'app_manifest_version_name%': '<(android_app_version_name)',
'app_manifest_version_code%': '<(android_app_version_code)',
+ # aapt generates this proguard.txt.
+ 'generated_proguard_file': '<(intermediate_dir)/proguard.txt',
'proguard_enabled%': 'false',
- 'proguard_flags_paths%': ['<(DEPTH)/build/android/empty_proguard.flags'],
+ 'proguard_flags_paths': ['<(generated_proguard_file)'],
'jar_name': 'chromium_apk_<(_target_name).jar',
'resource_dir%':'<(DEPTH)/build/android/ant/empty/res',
'R_package%':'',
@@ -433,8 +435,13 @@
],
'actions': [
{
- 'action_name': 'ant_codegen_<(_target_name)',
- 'message': 'Generating R.java for <(_target_name)',
+ 'action_name': 'process_resources',
+ 'message': 'processing resources for <(_target_name)',
+ 'variables': {
+ # Write the inputs list to a file, so that its mtime is updated when
+ # the list of inputs changes.
+ 'inputs_list_file': '>|(apk_codegen.<(_target_name).gypcmd >@(additional_input_paths) >@(resource_input_paths))',
+ },
'conditions': [
['is_test_apk == 1', {
'variables': {
@@ -443,41 +450,37 @@
}
}],
],
- 'variables': {
- # Write the inputs list to a file, so that its mtime is updated when
- # the list of inputs changes.
- 'inputs_list_file': '>|(apk_codegen.<(_target_name).gypcmd >@(additional_input_paths) >@(resource_input_paths))'
- },
'inputs': [
- '<(DEPTH)/build/android/ant/apk-codegen.xml',
'<(DEPTH)/build/android/gyp/util/build_utils.py',
- '<(DEPTH)/build/android/gyp/ant.py',
+ '<(DEPTH)/build/android/gyp/process_resources.py',
'<(android_manifest_path)',
'>@(additional_input_paths)',
'>@(resource_input_paths)',
'>(inputs_list_file)',
],
'outputs': [
+ '<(generated_proguard_file)',
'<(codegen_stamp)',
],
'action': [
- 'python', '<(DEPTH)/build/android/gyp/ant.py',
- '-quiet',
- '-DADDITIONAL_RES_DIRS=>(additional_res_dirs)',
- '-DADDITIONAL_RES_PACKAGES=>(additional_res_packages)',
- '-DADDITIONAL_R_TEXT_FILES=>(additional_R_text_files)',
- '-DANDROID_MANIFEST=<(android_manifest_path)',
- '-DANDROID_SDK_JAR=<(android_sdk_jar)',
- '-DANDROID_SDK_ROOT=<(android_sdk_root)',
- '-DANDROID_SDK_VERSION=<(android_sdk_version)',
- '-DANDROID_SDK_TOOLS=<(android_sdk_tools)',
- '-DOUT_DIR=<(intermediate_dir)',
- '-DRESOURCE_DIR=<(resource_dir)',
+ 'python', '<(DEPTH)/build/android/gyp/process_resources.py',
+ '--android-sdk', '<(android_sdk)',
+ '--android-sdk-tools', '<(android_sdk_tools)',
- '-DSTAMP=<(codegen_stamp)',
- '-Dbasedir=.',
- '-buildfile',
- '<(DEPTH)/build/android/ant/apk-codegen.xml',
+ '--android-manifest', '<(android_manifest_path)',
+ '--dependencies-res-dirs', '>(additional_res_dirs)',
+
+ '--extra-res-packages', '>(additional_res_packages)',
+ '--extra-r-text-files', '>(additional_R_text_files)',
+
+ '--proguard-file', '<(generated_proguard_file)',
+
+ '--resource-dir', '<(resource_dir)',
+ '--crunch-output-dir', '<(intermediate_dir)/res',
+
+ '--R-dir', '<(intermediate_dir)/gen',
+
+ '--stamp', '<(codegen_stamp)',
],
},
{