| 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 # Pass the build type to ant. Currently it only assumes | 639 # Pass the build type to ant. Currently it only assumes |
| 640 # debug mode in java. Release mode will break the current | 640 # debug mode in java. Release mode will break the current |
| 641 # workflow. | 641 # workflow. |
| 642 # 'shell/content_shell_ant_helper.sh', | 642 # 'shell/content_shell_ant_helper.sh', |
| 643 'ant', | 643 'ant', |
| 644 '-DPRODUCT_DIR=<(ant_build_out)', | 644 '-DPRODUCT_DIR=<(ant_build_out)', |
| 645 '-DAPP_ABI=<(android_app_abi)', | 645 '-DAPP_ABI=<(android_app_abi)', |
| 646 '-buildfile', | 646 '-buildfile', |
| 647 'shell/android/java/content_shell_apk.xml', | 647 'shell/android/java/content_shell_apk.xml', |
| 648 # '<(CONFIGURATION_NAME)', | 648 # '<(CONFIGURATION_NAME)', |
| 649 ] | 649 ], |
| 650 'dependencies': [ |
| 651 'content_java', |
| 652 ], |
| 650 } | 653 } |
| 651 ], | 654 ], |
| 652 }, | 655 }, |
| 653 ], | 656 ], |
| 654 }], # OS=="android" | 657 }], # OS=="android" |
| 655 ] | 658 ] |
| 656 } | 659 } |
| OLD | NEW |