OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # This file is meant to be included into a target for instrumented dynamic |
| 6 # libraries and describes standard build action for most of the libraries. |
| 7 |
| 8 { |
| 9 'type': 'none', |
| 10 'actions': [ |
| 11 { |
| 12 'action_name': '<(_target_name)', |
| 13 'inputs': [ |
| 14 'download_build_install.sh', |
| 15 ], |
| 16 'outputs': [ |
| 17 '<(PRODUCT_DIR)/instrumented_libraries/asan/<(_target_name).txt', |
| 18 ], |
| 19 'action': ['./download_build_install.sh', '-i', '<(PRODUCT_DIR)', '-l', '<
(_target_name)', '-m', '<(INTERMEDIATE_DIR)', '-s', 'asan'], |
| 20 }, |
| 21 ], |
| 22 } |
OLD | NEW |