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

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

Issue 50423003: Adds a flag "use_instrumented_libraries" and corresponding target with 2 simple libs (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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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 # This file is meant to be included into a target for instrumented dynamic libra ries
Nico 2013/11/07 20:16:46 (nit: wrap comment at 80 cols maybe)
6 # and describes standard build action for most of the libraries.
7
8 {
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': '<(_target_name)',
13 'inputs': [
14 'download_build_install.sh',
15 ],
16 'outputs': [
17 '<(PRODUCT_DIR)/instrumented_libraries/asan/<(_target_name).txt',
18 ],
19 'action': ['./download_build_install.sh', '-i', '<(PRODUCT_DIR)', '-l', '< (_target_name)', '-m', '<(INTERMEDIATE_DIR)', '-s', 'asan'],
20 },
21 ],
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698