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

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

Issue 1288223004: msvs_emulation: Add support for StackReserveSize and StackCommitSize (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: fix indent Created 5 years, 4 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/win/gyptest-link-stacksize.py ('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 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'enable_uac', 8 'target_name': 'test_default',
9 'type': 'executable',
10 'sources': ['hello.cc'],
11 },
12 {
13 'target_name': 'test_set_reserved_size',
9 'type': 'executable', 14 'type': 'executable',
10 'sources': ['hello.cc'], 15 'sources': ['hello.cc'],
11 'msvs_settings': { 16 'msvs_settings': {
12 'VCManifestTool': { 17 'VCLinkerTool': {
13 'EmbedManifest': 'true', 18 'StackReserveSize': 2097152, # 2MB
14 } 19 }
15 }, 20 },
16 }, 21 },
17 { 22 {
18 'target_name': 'enable_uac_no', 23 'target_name': 'test_set_commit_size',
19 'type': 'executable', 24 'type': 'executable',
20 'sources': ['hello.cc'], 25 'sources': ['hello.cc'],
21 'msvs_settings': { 26 'msvs_settings': {
22 'VCLinkerTool': { 27 'VCLinkerTool': {
23 'EnableUAC': 'false', 28 'StackCommitSize': 8192, # 8KB
24 },
25 'VCManifestTool': {
26 'EmbedManifest': 'true',
27 } 29 }
28 }, 30 },
29 }, 31 },
30 { 32 {
31 'target_name': 'enable_uac_admin', 33 'target_name': 'test_set_both',
32 'type': 'executable', 34 'type': 'executable',
33 'sources': ['hello.cc'], 35 'sources': ['hello.cc'],
34 'msvs_settings': { 36 'msvs_settings': {
35 'VCLinkerTool': { 37 'VCLinkerTool': {
36 'UACExecutionLevel': 2, 38 'StackReserveSize': 2097152, # 2MB
37 'UACUIAccess': 'true', 39 'StackCommitSize': 8192, # 8KB
38 },
39 'VCManifestTool': {
40 'EmbedManifest': 'true',
41 } 40 }
42 }, 41 },
43 }, 42 },
44 ] 43 ]
45 } 44 }
OLDNEW
« no previous file with comments | « test/win/gyptest-link-stacksize.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698