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

Side by Side Diff: test/win/gyptest-link-generate-manifest.py

Issue 103963007: win ninja: default to embedding manifest to match msvs (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: rebase 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 | Annotate | Revision Log
« no previous file with comments | « pylib/gyp/msvs_emulation.py ('k') | test/win/linker-flags/generate-manifest.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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2012 Google Inc. All rights reserved. 3 # Copyright (c) 2012 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 """ 7 """
8 Make sure we generate a manifest file when linking binaries, including 8 Make sure we generate a manifest file when linking binaries, including
9 handling AdditionalManifestFiles. 9 handling AdditionalManifestFiles.
10 """ 10 """
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 embedded_manifest=False, 113 embedded_manifest=False,
114 extra_manifest=True) 114 extra_manifest=True)
115 test_manifest('test_generate_manifest_true_with_extra_manifest_list.exe', 115 test_manifest('test_generate_manifest_true_with_extra_manifest_list.exe',
116 generate_manifest=True, 116 generate_manifest=True,
117 embedded_manifest=False, 117 embedded_manifest=False,
118 extra_manifest=True) 118 extra_manifest=True)
119 test_manifest('test_generate_manifest_false_with_extra_manifest_list.exe', 119 test_manifest('test_generate_manifest_false_with_extra_manifest_list.exe',
120 generate_manifest=False, 120 generate_manifest=False,
121 embedded_manifest=False, 121 embedded_manifest=False,
122 extra_manifest=True) 122 extra_manifest=True)
123 test_manifest('test_generate_manifest_default_embed_default.exe',
124 generate_manifest=True,
125 embedded_manifest=True,
126 extra_manifest=False)
123 test.pass_test() 127 test.pass_test()
OLDNEW
« no previous file with comments | « pylib/gyp/msvs_emulation.py ('k') | test/win/linker-flags/generate-manifest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698