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 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'instrumented_libraries', |
| 9 'type': 'none', |
| 10 'variables': { |
| 11 'prune_self_dependency': 1, |
| 12 }, |
| 13 'dependencies': [ |
| 14 'libpng12-0', |
| 15 'libxau6', |
| 16 ], |
| 17 'actions': [ |
| 18 { |
| 19 'action_name': 'fix_rpaths', |
| 20 'inputs': [ |
| 21 'fix_rpaths.sh', |
| 22 ], |
| 23 'outputs': [ |
| 24 '<(PRODUCT_DIR)/instrumented_libraries/asan/rpaths.fixed.txt', |
| 25 ], |
| 26 'action': ['./fix_rpaths.sh', '<(PRODUCT_DIR)/instrumented_libraries/a
san'], |
| 27 }, |
| 28 ], |
| 29 }, |
| 30 { |
| 31 'target_name': 'libpng12-0', |
| 32 'dependencies=': [], |
| 33 'includes': ['standard_instrumented_library_target.gypi'], |
| 34 }, |
| 35 { |
| 36 'target_name': 'libxau6', |
| 37 'dependencies=': [], |
| 38 'includes': ['standard_instrumented_library_target.gypi'], |
| 39 }, |
| 40 ], |
| 41 } |
OLD | NEW |