| Index: test/determinism/solibs.gyp
|
| diff --git a/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp b/test/determinism/solibs.gyp
|
| similarity index 52%
|
| copy from test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp
|
| copy to test/determinism/solibs.gyp
|
| index e816351d684f554986d74562f711be62b3112cea..9ae3246d6383a37ab0bae60ee05fe59274ba5bc2 100644
|
| --- a/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp
|
| +++ b/test/determinism/solibs.gyp
|
| @@ -1,31 +1,25 @@
|
| -# Copyright (c) 2012 Google Inc. All rights reserved.
|
| +# Copyright (c) 2015 Google Inc. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +# This test both tests solibs and implicit_deps.
|
| {
|
| 'targets': [
|
| {
|
| 'target_name': 'a',
|
| 'type': 'shared_library',
|
| 'sources': [ 'solib.cc' ],
|
| - # Incremental linking enabled so that .lib timestamp is maintained when
|
| - # exports are unchanged.
|
| - 'msvs_settings': {
|
| - 'VCLinkerTool': {
|
| - 'LinkIncremental': '2',
|
| - }
|
| - },
|
| },
|
| {
|
| 'target_name': 'b',
|
| + 'type': 'shared_library',
|
| + 'sources': [ 'solib.cc' ],
|
| + },
|
| + {
|
| + 'target_name': 'c',
|
| 'type': 'executable',
|
| 'sources': [ 'main.cc' ],
|
| - 'dependencies': [ 'a' ],
|
| - 'msvs_settings': {
|
| - 'VCLinkerTool': {
|
| - 'LinkIncremental': '2',
|
| - }
|
| - },
|
| + 'dependencies': [ 'a', 'b' ],
|
| },
|
| ],
|
| 'conditions': [
|
|
|