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

Side by Side Diff: src/untrusted/valgrind/valgrind.gyp

Issue 10909144: Reapply change 9663 (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 3 months 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 | Annotate | Revision Log
« no previous file with comments | « src/untrusted/nacl/nacl.gyp ('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')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Native Client 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 'includes': [
7 '../../../build/common.gypi',
8 ],
9 'conditions': [
10 ['target_arch!="arm"', {
11 'targets' : [
12 {
13 'target_name': 'valgrind_lib',
14 'type': 'none',
15 'dependencies': [
16 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
17 ],
18 'variables': {
19 'nlib_target': 'libvalgrind.a',
20 'nso_target': 'libvalgrind.so',
21 'build_glibc': 1,
22 'build_newlib': 1,
23 },
24 'sources': [
25 'valgrind_interceptors.c',
26 ],
27 },
28 {
29 'target_name': 'dynamic_annotations_lib',
30 'type': 'none',
31 'dependencies': [
32 '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
33 ],
34 'variables': {
35 'nlib_target': 'libdynamic_annotations.a',
36 'nso_target': 'libdynamic_annotations.so',
37 'build_glibc': 1,
38 'build_newlib': 0,
39 },
40 'sources': [
41 'dynamic_annotations.c',
42 ],
43 }
44 ],
45 }],
46 ],
47 }
OLDNEW
« no previous file with comments | « src/untrusted/nacl/nacl.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698