| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 'ant', | 626 'ant', |
| 627 '-DPRODUCT_DIR=<(ant_build_out)', | 627 '-DPRODUCT_DIR=<(ant_build_out)', |
| 628 '-DAPP_ABI=<(android_app_abi)', | 628 '-DAPP_ABI=<(android_app_abi)', |
| 629 '-buildfile', | 629 '-buildfile', |
| 630 'shell/android/java/content_shell_apk.xml', | 630 'shell/android/java/content_shell_apk.xml', |
| 631 '<(CONFIGURATION_NAME)', | 631 '<(CONFIGURATION_NAME)', |
| 632 ] | 632 ] |
| 633 } | 633 } |
| 634 ], | 634 ], |
| 635 }, | 635 }, |
| 636 { | |
| 637 'target_name': 'content_shell_test_apk', | |
| 638 'type': 'none', | |
| 639 'dependencies': [ | |
| 640 'content_shell_apk', | |
| 641 ], | |
| 642 'actions': [ | |
| 643 { | |
| 644 'action_name': 'content_shell_test_generate_apk', | |
| 645 'inputs': [ | |
| 646 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', | |
| 647 '<(DEPTH)/content/shell/android/javatests/AndroidManifest.xml', | |
| 648 ], | |
| 649 'outputs': [ | |
| 650 '<(PRODUCT_DIR)/content_shell_test/ContentShellTest-debug.apk', | |
| 651 ], | |
| 652 'action': [ | |
| 653 'ant', | |
| 654 '-DPRODUCT_DIR=<(ant_build_out)', | |
| 655 '-DAPP_ABI=<(android_app_abi)', | |
| 656 '-buildfile', | |
| 657 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', | |
| 658 ] | |
| 659 } | |
| 660 ], | |
| 661 }, | |
| 662 ], | 636 ], |
| 663 }], # OS=="android" | 637 }], # OS=="android" |
| 664 ] | 638 ] |
| 665 } | 639 } |
| OLD | NEW |