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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « test/determinism/solib.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')
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2015 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 # This test both tests solibs and implicit_deps.
5 { 6 {
6 'targets': [ 7 'targets': [
7 { 8 {
8 'target_name': 'a', 9 'target_name': 'a',
9 'type': 'shared_library', 10 'type': 'shared_library',
10 'sources': [ 'solib.cc' ], 11 'sources': [ 'solib.cc' ],
11 # Incremental linking enabled so that .lib timestamp is maintained when
12 # exports are unchanged.
13 'msvs_settings': {
14 'VCLinkerTool': {
15 'LinkIncremental': '2',
16 }
17 },
18 }, 12 },
19 { 13 {
20 'target_name': 'b', 14 'target_name': 'b',
15 'type': 'shared_library',
16 'sources': [ 'solib.cc' ],
17 },
18 {
19 'target_name': 'c',
21 'type': 'executable', 20 'type': 'executable',
22 'sources': [ 'main.cc' ], 21 'sources': [ 'main.cc' ],
23 'dependencies': [ 'a' ], 22 'dependencies': [ 'a', 'b' ],
24 'msvs_settings': {
25 'VCLinkerTool': {
26 'LinkIncremental': '2',
27 }
28 },
29 }, 23 },
30 ], 24 ],
31 'conditions': [ 25 'conditions': [
32 ['OS=="linux"', { 26 ['OS=="linux"', {
33 'target_defaults': { 27 'target_defaults': {
34 'cflags': ['-fPIC'], 28 'cflags': ['-fPIC'],
35 }, 29 },
36 }], 30 }],
37 ], 31 ],
38 } 32 }
OLDNEW
« 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