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

Unified Diff: test/linux/implicit-rpath/test.gyp

Issue 11821060: Change ninja rpath generation to be more like make. Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 11 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
« test/linux/gyptest-implicit-rpath.py ('K') | « test/linux/implicit-rpath/main.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/linux/implicit-rpath/test.gyp
===================================================================
--- test/linux/implicit-rpath/test.gyp (revision 0)
+++ test/linux/implicit-rpath/test.gyp (revision 0)
@@ -0,0 +1,33 @@
+# Copyright (c) 2012 Google Inc. All rights reserved.
Nico 2013/01/10 21:34:57 nit: 2013
cwolfe 2013/01/10 21:49:47 Done.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ {
+ 'target_name': 'shared',
+ 'type': 'shared_library',
+ 'sources': [ 'file.c' ],
+ },
+ {
+ 'target_name': 'static',
+ 'type': 'static_library',
+ 'sources': [ 'file.c' ],
+ },
+ {
+ 'target_name': 'shared_executable',
+ 'type': 'executable',
+ 'sources': [ 'main.c' ],
+ 'dependencies': [
+ 'shared'
Nico 2013/01/10 21:34:57 nit: i'd put a trailing , here
cwolfe 2013/01/10 21:49:47 Done.
+ ]
+ },
+ {
+ 'target_name': 'static_executable',
+ 'type': 'executable',
+ 'sources': [ 'main.c' ],
+ 'dependencies': [
+ 'static'
Nico 2013/01/10 21:34:57 here too
cwolfe 2013/01/10 21:49:47 Done.
+ ]
+ },
+ ],
+}
« test/linux/gyptest-implicit-rpath.py ('K') | « test/linux/implicit-rpath/main.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698