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

Side by Side Diff: test/win/linker-flags/link-ordering.gyp

Issue 107293004: win msvs: make ordering match .gyp order (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: use OrderedSet instead Created 7 years 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'test_ordering_exe',
9 'type': 'executable',
10 # These are so the names of the functions appear in the disassembly.
11 'msvs_settings': {
12 'VCCLCompilerTool': {
13 'DebugInformationFormat': '3',
14 'Optimization': '2',
15 },
16 'VCLinkerTool': {
17 'GenerateDebugInformation': 'true',
18 'LinkIncremental': '1',
19 'GenerateManifest': 'false',
20 # Minimize the disassembly to just our code.
21 'AdditionalOptions': [
22 '/NODEFAULTLIB',
23 ],
24 },
25 },
26 'sources': [
27 # Explicitly sorted the same way as the disassembly in the test .py.
28 'main-crt.c',
29 'z.cc',
30 'x.cc',
31 'y.cc',
32 'hello.cc',
33 ],
34
35 },
36 ]
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698