| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # packages and describes standard build action for most of the packages. | 6 # packages and describes standard build action for most of the packages. |
| 7 | 7 |
| 8 { | 8 { |
| 9 'target_name': '<(_sanitizer_type)-<(_package_name)', | 9 'target_name': '<(_sanitizer_type)-<(_package_name)', |
| 10 'type': 'none', | 10 'type': 'none', |
| 11 'actions': [ | 11 'actions': [ |
| 12 { | 12 { |
| 13 'action_name': '<(_package_name)', | 13 'action_name': '<(_package_name)', |
| 14 'inputs': [ | 14 'inputs': [ |
| 15 # TODO(earthdok): reintroduce some sort of dependency | 15 # TODO(eugenis): reintroduce some sort of dependency |
| 16 # See http://crbug.com/343515 | 16 # See http://crbug.com/343515 |
| 17 #'download_build_install.py', | 17 #'download_build_install.py', |
| 18 ], | 18 ], |
| 19 'outputs': [ | 19 'outputs': [ |
| 20 '<(PRODUCT_DIR)/instrumented_libraries/<(_sanitizer_type)/<(_package_nam
e).txt', | 20 '<(PRODUCT_DIR)/instrumented_libraries/<(_sanitizer_type)/<(_package_nam
e).txt', |
| 21 ], | 21 ], |
| 22 'action': ['scripts/download_build_install.py', | 22 'action': ['scripts/download_build_install.py', |
| 23 '--build-method=>(_build_method)', | 23 '--build-method=>(_build_method)', |
| 24 '--cc=<(_cc)', | 24 '--cc=<(_cc)', |
| 25 '--cflags=>(_package_cflags)', | 25 '--cflags=>(_package_cflags)', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 '--sanitizer-blacklist=>(_<(_sanitizer_type)_blacklist)', | 62 '--sanitizer-blacklist=>(_<(_sanitizer_type)_blacklist)', |
| 63 ], | 63 ], |
| 64 'inputs+': [ | 64 'inputs+': [ |
| 65 '>(_<(_sanitizer_type)_blacklist)', | 65 '>(_<(_sanitizer_type)_blacklist)', |
| 66 ], | 66 ], |
| 67 }], | 67 }], |
| 68 ], | 68 ], |
| 69 }, | 69 }, |
| 70 ], | 70 ], |
| 71 } | 71 } |
| OLD | NEW |