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

Side by Side Diff: third_party/instrumented_libraries/instrumented_libraries.gyp

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 {
6 'targets': [
7 {
8 'target_name': 'instrumented_libraries',
9 'type': 'none',
10 'variables': {
11 'prune_self_dependency': 1,
12 },
13 'dependencies': [
14 'libpng12-0',
15 'libxau6',
16 ],
17 'actions': [
18 {
19 'action_name': 'fix_rpaths',
20 'inputs': [
21 'fix_rpaths.sh',
22 ],
23 'outputs': [
24 '<(PRODUCT_DIR)/instrumented_libraries/asan/rpaths.fixed.txt',
25 ],
26 'action': ['./fix_rpaths.sh', '<(PRODUCT_DIR)/instrumented_libraries/a san'],
27 },
28 ],
29 },
30 {
31 'target_name': 'libpng12-0',
32 'dependencies=': [],
alextaran1 2013/11/05 14:14:52 Unfortunately, I have to leave 'dependencies=': []
33 'includes': ['standard_instrumented_library_target.gypi'],
34 },
35 {
36 'target_name': 'libxau6',
37 'dependencies=': [],
38 'includes': ['standard_instrumented_library_target.gypi'],
39 },
40 ],
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698