OLD | NEW |
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 # This file is meant to be included into a target to provide a rule | 5 # This file is meant to be included into a target to provide a rule |
6 # to build Android APKs in a consistent manner. | 6 # to build Android APKs in a consistent manner. |
7 # | 7 # |
8 # To use this, create a gyp target with the following form: | 8 # To use this, create a gyp target with the following form: |
9 # { | 9 # { |
10 # 'target_name': 'my_package_apk', | 10 # 'target_name': 'my_package_apk', |
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
849 'output_path': '<(main_dex_list_path)', | 849 'output_path': '<(main_dex_list_path)', |
850 }, | 850 }, |
851 'includes': [ 'android/main_dex_action.gypi' ], | 851 'includes': [ 'android/main_dex_action.gypi' ], |
852 }, | 852 }, |
853 ] | 853 ] |
854 }] | 854 }] |
855 ], | 855 ], |
856 }], | 856 }], |
857 ], | 857 ], |
858 'dependencies': [ | 858 'dependencies': [ |
| 859 '<(DEPTH)/build/android/android_lint_cache.gyp:android_lint_cache', |
859 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', | 860 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', |
860 ], | 861 ], |
861 'actions': [ | 862 'actions': [ |
862 { | 863 { |
863 'action_name': 'process_resources', | 864 'action_name': 'process_resources', |
864 'message': 'processing resources for <(_target_name)', | 865 'message': 'processing resources for <(_target_name)', |
865 'variables': { | 866 'variables': { |
866 'local_additional_input_paths': [ | 867 'local_additional_input_paths': [ |
867 '>@(additional_input_paths)', | 868 '>@(additional_input_paths)', |
868 ], | 869 ], |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 'native_libs_dir': '<(apk_package_native_libs_dir)', | 1241 'native_libs_dir': '<(apk_package_native_libs_dir)', |
1241 }, { | 1242 }, { |
1242 'native_libs_dir': '<(DEPTH)/build/android/ant/empty/res', | 1243 'native_libs_dir': '<(DEPTH)/build/android/ant/empty/res', |
1243 }], | 1244 }], |
1244 ], | 1245 ], |
1245 }, | 1246 }, |
1246 'includes': ['android/apkbuilder_action.gypi'], | 1247 'includes': ['android/apkbuilder_action.gypi'], |
1247 }, | 1248 }, |
1248 ], | 1249 ], |
1249 } | 1250 } |
OLD | NEW |