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

Side by Side Diff: test/no-cpp/src/test.gyp

Issue 23475025: ninja/mac: Don't link c-file-only targets to libstdc++ Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 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
« pylib/gyp/generator/ninja.py ('K') | « test/no-cpp/src/f.cc ('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) 2013 Google Inc. 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 'targets': [
6 {
7 'target_name': 'no_cpp',
8 'type': 'executable',
9 'sources': [ 'empty-main.c' ],
10 },
11 # A static_library with a cpp file and a linkable with only .c files
12 # depending on it causes a linker error:
13 {
14 'target_name': 'cpp_lib',
15 'type': 'static_library',
16 'sources': [ 'f.cc' ],
17 },
18 {
19 'target_name': 'no_cpp_dep_on_cc_lib',
20 'type': 'executable',
21 'dependencies': [ 'cpp_lib' ],
22 'sources': [ 'call-f-main.c' ],
23 },
24 ],
25 }
OLDNEW
« pylib/gyp/generator/ninja.py ('K') | « test/no-cpp/src/f.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698