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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/untrusted/nacl/nacl.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/valgrind/valgrind.gyp
===================================================================
--- src/untrusted/valgrind/valgrind.gyp (revision 0)
+++ src/untrusted/valgrind/valgrind.gyp (revision 0)
@@ -0,0 +1,47 @@
+# Copyright (c) 2012 The Native Client Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'includes': [
+ '../../../build/common.gypi',
+ ],
+ 'conditions': [
+ ['target_arch!="arm"', {
+ 'targets' : [
+ {
+ 'target_name': 'valgrind_lib',
+ 'type': 'none',
+ 'dependencies': [
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
+ ],
+ 'variables': {
+ 'nlib_target': 'libvalgrind.a',
+ 'nso_target': 'libvalgrind.so',
+ 'build_glibc': 1,
+ 'build_newlib': 1,
+ },
+ 'sources': [
+ 'valgrind_interceptors.c',
+ ],
+ },
+ {
+ 'target_name': 'dynamic_annotations_lib',
+ 'type': 'none',
+ 'dependencies': [
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
+ ],
+ 'variables': {
+ 'nlib_target': 'libdynamic_annotations.a',
+ 'nso_target': 'libdynamic_annotations.so',
+ 'build_glibc': 1,
+ 'build_newlib': 0,
+ },
+ 'sources': [
+ 'dynamic_annotations.c',
+ ],
+ }
+ ],
+ }],
+ ],
+}
Property changes on: src/untrusted/valgrind/valgrind.gyp
___________________________________________________________________
Added: svn:eol-style
+ LF
« 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