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

Unified Diff: test/determinism/solibs.gyp

Issue 1506733002: GYP: Make GYP build deterministic (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Fixes cosmetic issue Created 4 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
« no previous file with comments | « test/determinism/solib.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': [
« no previous file with comments | « test/determinism/solib.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698