| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 an action to provide a rule that | 5 # This file is meant to be included into an action to provide a rule that |
| 6 # instruments either java class files, or jars. | 6 # instruments either java class files, or jars. |
| 7 | 7 |
| 8 { | 8 { |
| 9 'variables': { | 9 'variables': { |
| 10 'instr_type%': 'jar', | 10 'instr_type%': 'jar', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 ], | 44 ], |
| 45 'action': [ | 45 'action': [ |
| 46 'python', '<(DEPTH)/build/android/gyp/emma_instr.py', | 46 'python', '<(DEPTH)/build/android/gyp/emma_instr.py', |
| 47 '<(instr_action)', | 47 '<(instr_action)', |
| 48 '--input-path=<(input_path)', | 48 '--input-path=<(input_path)', |
| 49 '--output-path=<(output_path)', | 49 '--output-path=<(output_path)', |
| 50 '--stamp=<(stamp_path)', | 50 '--stamp=<(stamp_path)', |
| 51 '<@(extra_instr_args)', | 51 '<@(extra_instr_args)', |
| 52 ] | 52 ] |
| 53 } | 53 } |
| OLD | NEW |