| OLD | NEW |
| 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 Loading... |
| 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() |
| OLD | NEW |