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

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

Issue 10915109: Add nacl_sdk gyp meta-target. (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')
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 'variables': {
16 'nlib_target': 'libvalgrind.a',
17 'nso_target': 'libvalgrind.so',
18 'build_glibc': 1,
19 'build_newlib': 1,
20 },
21 'sources': [
22 'valgrind_interceptors.c',
23 ],
24 },
25 {
26 'target_name': 'dynamic_annotations_lib',
27 'type': 'none',
28 'variables': {
29 'nlib_target': 'libdynamic_annotations.a',
30 'nso_target': 'libdynamic_annotations.so',
31 'build_glibc': 1,
32 'build_newlib': 0,
33 },
34 'sources': [
35 'dynamic_annotations.c',
36 ],
37 }
38 ],
39 }],
40 ],
41 }
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