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

Side by Side Diff: test/win/shard/shard_ref.gyp

Issue 199413010: win: make msvs_shard work properly for static_library references (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: dll Created 6 years, 9 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 | « test/win/shard/shard.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 2014 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 {
6 'targets': [
7 {
8 'target_name': 'refs_to_shard_external_lib',
9 'type': 'static_library',
10 'dependencies': [
11 # Make sure references in other files are updated correctly.
12 'shard.gyp:shard',
13 ],
14 'sources': [
15 'hello.cc',
16 ],
17 },
18 {
19 'target_name': 'refs_to_shard_external_exe',
20 'type': 'executable',
21 'dependencies': [
22 # Make sure references in other files are updated correctly.
23 'shard.gyp:shard',
24 ],
25 'sources': [
26 'hello.cc',
27 ],
28 },
29 {
30 'target_name': 'refs_to_shard_external_dll',
31 'type': 'shared_library',
32 'dependencies': [
33 # Make sure references in other files are updated correctly.
34 'shard.gyp:shard',
35 ],
36 'sources': [
37 'hello.cc',
38 ],
39 },
40 ]
41 }
OLDNEW
« no previous file with comments | « test/win/shard/shard.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698