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', |
554 '<(DEPTH)/tools/android/android_tools.gyp:android_tools', | 555 '<(DEPTH)/tools/android/android_tools.gyp:android_tools', |
555 ] | 556 ] |
556 }], | 557 }], |
557 ], | 558 ], |
558 'dependencies': [ | 559 'dependencies': [ |
559 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', | 560 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', |
560 ], | 561 ], |
561 'actions': [ | 562 'actions': [ |
562 { | 563 { |
563 'action_name': 'process_resources', | 564 'action_name': 'process_resources', |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 '-DEMMA_INSTRUMENT=<(emma_instrument)', | 912 '-DEMMA_INSTRUMENT=<(emma_instrument)', |
912 '-DEMMA_DEVICE_JAR=<(emma_device_jar)', | 913 '-DEMMA_DEVICE_JAR=<(emma_device_jar)', |
913 | 914 |
914 '-Dbasedir=.', | 915 '-Dbasedir=.', |
915 '-buildfile', | 916 '-buildfile', |
916 '<(DEPTH)/build/android/ant/apk-package.xml', | 917 '<(DEPTH)/build/android/ant/apk-package.xml', |
917 ] | 918 ] |
918 }, | 919 }, |
919 ], | 920 ], |
920 } | 921 } |
OLD | NEW |