| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 'base_unittests', | 662 'base_unittests', |
| 663 ], | 663 ], |
| 664 'actions': [ | 664 'actions': [ |
| 665 { | 665 { |
| 666 # Generate apk files (including source and antfile) from | 666 # Generate apk files (including source and antfile) from |
| 667 # a template, and builds them. | 667 # a template, and builds them. |
| 668 'action_name': 'generate_and_build', | 668 'action_name': 'generate_and_build', |
| 669 'inputs': [ | 669 'inputs': [ |
| 670 '../testing/android/generate_native_test.py', | 670 '../testing/android/generate_native_test.py', |
| 671 '<(PRODUCT_DIR)/lib.target/libbase_unittests.so', | 671 '<(PRODUCT_DIR)/lib.target/libbase_unittests.so', |
| 672 '<(PRODUCT_DIR)/chromium_base.jar' | 672 '<(PRODUCT_DIR)/lib.java/chromium_base.jar' |
| 673 ], | 673 ], |
| 674 'outputs': [ | 674 'outputs': [ |
| 675 '<(PRODUCT_DIR)/ChromeNativeTests_base_unittests-debug.apk', | 675 '<(PRODUCT_DIR)/ChromeNativeTests_base_unittests-debug.apk', |
| 676 ], | 676 ], |
| 677 'action': [ | 677 'action': [ |
| 678 '../testing/android/generate_native_test.py', | 678 '../testing/android/generate_native_test.py', |
| 679 '--native_library', | 679 '--native_library', |
| 680 '<(PRODUCT_DIR)/lib.target/libbase_unittests.so', | 680 '<(PRODUCT_DIR)/lib.target/libbase_unittests.so', |
| 681 '--jar', | 681 '--jar', |
| 682 '<(PRODUCT_DIR)/chromium_base.jar', | 682 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', |
| 683 '--output', | 683 '--output', |
| 684 '<(PRODUCT_DIR)/base_unittests_apk', | 684 '<(PRODUCT_DIR)/base_unittests_apk', |
| 685 '--ant-args', | 685 '--ant-args', |
| 686 '-DPRODUCT_DIR=<(PRODUCT_DIR)', | 686 '-DPRODUCT_DIR=<(PRODUCT_DIR)', |
| 687 '--ant-compile' | 687 '--ant-compile' |
| 688 ], | 688 ], |
| 689 }, | 689 }, |
| 690 ] | 690 ] |
| 691 }], | 691 }], |
| 692 }], | 692 }], |
| 693 ], | 693 ], |
| 694 } | 694 } |
| OLD | NEW |