Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Side by Side Diff: third_party/instrumented_libraries/standard_instrumented_library_target.gypi

Issue 60733027: Rewrited build script for instrumented libraries from bash to python (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/instrumented_libraries/fix_rpaths.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'type': 'none', 9 'type': 'none',
10 'actions': [ 10 'actions': [
11 { 11 {
12 'action_name': '<(_target_name)', 12 'action_name': '<(_target_name)',
13 'inputs': [ 13 'inputs': [
14 'download_build_install.sh', 14 'download_build_install.py',
15 ], 15 ],
16 'outputs': [ 16 'outputs': [
17 '<(PRODUCT_DIR)/instrumented_libraries/asan/<(_target_name).txt', 17 '<(PRODUCT_DIR)/instrumented_libraries/asan/<(_target_name).txt',
18 ], 18 ],
19 'action': ['./download_build_install.sh', '-i', '<(PRODUCT_DIR)', '-l', '< (_target_name)', '-m', '<(INTERMEDIATE_DIR)', '-s', 'asan'], 19 'action': ['./download_build_install.py', '-i', '<(PRODUCT_DIR)', '-l', '< (_target_name)', '-m', '<(INTERMEDIATE_DIR)', '-s', 'asan'],
20 }, 20 },
21 ], 21 ],
22 } 22 }
OLDNEW
« no previous file with comments | « third_party/instrumented_libraries/fix_rpaths.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698