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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 '--configuration-name=<(CONFIGURATION_NAME)', | 544 '--configuration-name=<(CONFIGURATION_NAME)', |
545 ], | 545 ], |
546 }, | 546 }, |
547 ], | 547 ], |
548 'dependencies': [ | 548 'dependencies': [ |
549 '<(DEPTH)/build/android/rezip.gyp:rezip_apk_jar', | 549 '<(DEPTH)/build/android/rezip.gyp:rezip_apk_jar', |
550 ], | 550 ], |
551 }], | 551 }], |
552 ['is_test_apk == 1', { | 552 ['is_test_apk == 1', { |
553 'dependencies': [ | 553 'dependencies': [ |
554 '<(DEPTH)/build/android/pylib/device/commands/commands.gyp:chromium_comm
ands', | |
555 '<(DEPTH)/tools/android/android_tools.gyp:android_tools', | 554 '<(DEPTH)/tools/android/android_tools.gyp:android_tools', |
556 ] | 555 ] |
557 }], | 556 }], |
558 ], | 557 ], |
559 'dependencies': [ | 558 'dependencies': [ |
560 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', | 559 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', |
561 ], | 560 ], |
562 'actions': [ | 561 'actions': [ |
563 { | 562 { |
564 'action_name': 'process_resources', | 563 'action_name': 'process_resources', |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
912 '-DEMMA_INSTRUMENT=<(emma_instrument)', | 911 '-DEMMA_INSTRUMENT=<(emma_instrument)', |
913 '-DEMMA_DEVICE_JAR=<(emma_device_jar)', | 912 '-DEMMA_DEVICE_JAR=<(emma_device_jar)', |
914 | 913 |
915 '-Dbasedir=.', | 914 '-Dbasedir=.', |
916 '-buildfile', | 915 '-buildfile', |
917 '<(DEPTH)/build/android/ant/apk-package.xml', | 916 '<(DEPTH)/build/android/ant/apk-package.xml', |
918 ] | 917 ] |
919 }, | 918 }, |
920 ], | 919 ], |
921 } | 920 } |
OLD | NEW |