| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 uiautomator dexed tests jar. | 6 # to build uiautomator dexed tests jar. |
| 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': 'test_suite_name', | 10 # 'target_name': 'test_suite_name', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 '<(DEPTH)/build/android/gyp/dex.py', | 29 '<(DEPTH)/build/android/gyp/dex.py', |
| 30 '>@(library_dexed_jars_paths)', | 30 '>@(library_dexed_jars_paths)', |
| 31 ], | 31 ], |
| 32 'outputs': [ | 32 'outputs': [ |
| 33 '<(output_dex_path)', | 33 '<(output_dex_path)', |
| 34 ], | 34 ], |
| 35 'action': [ | 35 'action': [ |
| 36 'python', '<(DEPTH)/build/android/gyp/dex.py', | 36 'python', '<(DEPTH)/build/android/gyp/dex.py', |
| 37 '--dex-path=<(output_dex_path)', | 37 '--dex-path=<(output_dex_path)', |
| 38 '--android-sdk-root=<(android_sdk_root)', | 38 '--android-sdk-root=<(android_sdk_root)', |
| 39 '--android-sdk-build-tools=<(android_sdk_build_tools)', |
| 39 | 40 |
| 40 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja
. | 41 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja
. |
| 41 '--ignore=>!(echo \'>(_inputs)\' | md5sum)', | 42 '--ignore=>!(echo \'>(_inputs)\' | md5sum)', |
| 42 | 43 |
| 43 '>@(library_dexed_jars_paths)', | 44 '>@(library_dexed_jars_paths)', |
| 44 ], | 45 ], |
| 45 }, | 46 }, |
| 46 ], | 47 ], |
| 47 } | 48 } |
| OLD | NEW |