| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2012 The Native Client 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 'includes': [ |
| 7 '../../../build/common.gypi', |
| 8 ], |
| 9 'targets' : [ |
| 10 { |
| 11 'target_name': 'valgrind_lib', |
| 12 'type': 'none', |
| 13 'variables': { |
| 14 'nlib_target': 'libvalgrind.a', |
| 15 'nso_target': 'libvalgrind.so', |
| 16 'build_glibc': 1, |
| 17 'build_newlib': 1, |
| 18 }, |
| 19 'sources': [ |
| 20 'valgrind_interceptors.c', |
| 21 ], |
| 22 }, |
| 23 { |
| 24 'target_name': 'dynamic_annotations_lib', |
| 25 'type': 'none', |
| 26 'variables': { |
| 27 'nlib_target': 'libdynamic_annotations.a', |
| 28 'nso_target': 'libdynamic_annotations.so', |
| 29 'build_glibc': 1, |
| 30 'build_newlib': 0, |
| 31 }, |
| 32 'sources': [ |
| 33 'dynamic_annotations.c', |
| 34 ], |
| 35 } |
| 36 ], |
| 37 } |
| OLD | NEW |