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

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
« build/untrusted.gypi ('K') | « 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 'targets' : [
10 {
11 'target_name': 'valgrind_lib',
12 'type': 'none',
13 'variables': {
14 'nlib_target': 'libvalgrind.a',
15 'nso_target': 'libvalgrind.so',
16 'build_glibc': 1,
17 'build_newlib': 1,
18 },
19 'sources': [
20 'valgrind_interceptors.c',
21 ],
22 },
23 {
24 'target_name': 'dynamic_annotations_lib',
25 'type': 'none',
26 'variables': {
27 'nlib_target': 'libdynamic_annotations.a',
28 'nso_target': 'libdynamic_annotations.so',
29 'build_glibc': 1,
30 'build_newlib': 0,
31 },
32 'sources': [
33 'dynamic_annotations.c',
34 ],
35 }
36 ],
37 }
OLDNEW
« build/untrusted.gypi ('K') | « src/untrusted/nacl/nacl.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698