| 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 a target for instrumented dynamic | 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. | 6 # libraries and describes standard build action for most of the libraries. |
| 7 | 7 |
| 8 { | 8 { |
| 9 'target_name': '<(_sanitizer_type)-<(_library_name)', | 9 'target_name': '<(_sanitizer_type)-<(_library_name)', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 '--sanitizer-type=<(_sanitizer_type)', | 26 '--sanitizer-type=<(_sanitizer_type)', |
| 27 '--custom-configure-flags=<(_custom_configure_flags)', | 27 '--custom-configure-flags=<(_custom_configure_flags)', |
| 28 '--custom-c-compiler-flags=<(_custom_c_compiler_flags)', | 28 '--custom-c-compiler-flags=<(_custom_c_compiler_flags)', |
| 29 '--custom-cxx-compiler-flags=<(_custom_cxx_compiler_flags)', | 29 '--custom-cxx-compiler-flags=<(_custom_cxx_compiler_flags)', |
| 30 '--custom-linker-flags=<(_custom_linker_flags)', | 30 '--custom-linker-flags=<(_custom_linker_flags)', |
| 31 '--run-before-build=<(_run_before_build)', | 31 '--run-before-build=<(_run_before_build)', |
| 32 '<(_verbose_libraries_build_flag)', | 32 '<(_verbose_libraries_build_flag)', |
| 33 '--c-compiler=<(_cc)', | 33 '--c-compiler=<(_cc)', |
| 34 '--cxx-compiler=<(_cxx)', | 34 '--cxx-compiler=<(_cxx)', |
| 35 '--jobs=<(_jobs)', | 35 '--jobs=<(_jobs)', |
| 36 '--build-method=<(_build_method)', |
| 36 ], | 37 ], |
| 37 }, | 38 }, |
| 38 ], | 39 ], |
| 39 } | 40 } |
| OLD | NEW |