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

Side by Side Diff: test/win/shard/shard.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/hello.cc ('k') | test/win/shard/shard_ref.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 Google Inc. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'shard', 8 'target_name': 'shard',
9 'type': 'static_library', 9 'type': 'static_library',
10 'msvs_shard': 4, 10 'msvs_shard': 4,
11 'sources': [ 11 'sources': [
12 'hello1.cc', 12 'hello1.cc',
13 'hello2.cc', 13 'hello2.cc',
14 'hello3.cc', 14 'hello3.cc',
15 'hello4.cc', 15 'hello4.cc',
16 ], 16 ],
17 'product_dir': '<(PRODUCT_DIR)', 17 'product_dir': '<(PRODUCT_DIR)',
18 }, 18 },
19 {
20 'target_name': 'refs_to_shard',
21 'type': 'executable',
22 'dependencies': [
23 # Make sure references are correctly updated.
24 'shard',
25 ],
26 'sources': [
27 'hello.cc',
28 ],
29 },
19 ] 30 ]
20 } 31 }
OLDNEW
« no previous file with comments | « test/win/shard/hello.cc ('k') | test/win/shard/shard_ref.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698