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

Side by Side Diff: syzygy/integration_tests/integration_tests.gyp

Issue 2990123002: Add flag to compile and link for 64 bit architecture.
Patch Set: Add flag to compile and link for 64 bit architecture. Created 3 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
OLDNEW
1 # Copyright 2013 Google Inc. All Rights Reserved. 1 # Copyright 2013 Google Inc. All Rights Reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'outputs': [ 136 'outputs': [
137 '<(PRODUCT_DIR)/integration_tests_clang_dll.dll', 137 '<(PRODUCT_DIR)/integration_tests_clang_dll.dll',
138 '<(PRODUCT_DIR)/integration_tests_clang_dll.pdb' 138 '<(PRODUCT_DIR)/integration_tests_clang_dll.pdb'
139 ], 139 ],
140 'action': [ 140 'action': [
141 '<(python_exe)', 141 '<(python_exe)',
142 'make_integration_tests_clang.py', 142 'make_integration_tests_clang.py',
143 '--output-dir=<(PRODUCT_DIR)', 143 '--output-dir=<(PRODUCT_DIR)',
144 '--input-files=<(_inputs)', 144 '--input-files=<(_inputs)',
145 '--target-name=integration_tests_clang_dll', 145 '--target-name=integration_tests_clang_dll',
146 '--def-file=integration_tests_clang_dll.def' 146 '--def-file=integration_tests_clang_dll.def',
147 '--target-arch=<(target_arch)'
147 ], 148 ],
148 }, 149 },
149 ], 150 ],
150 }, 151 },
151 { 152 {
152 'target_name': 'integration_tests_dll', 153 'target_name': 'integration_tests_dll',
153 'type': 'loadable_module', 154 'type': 'loadable_module',
154 'sources': [ 155 'sources': [
155 '<@(integration_tests_common_source_files)', 156 '<@(integration_tests_common_source_files)',
156 '<@(integration_tests_other_files)' 157 '<@(integration_tests_other_files)'
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 # Asan agent is compiled without large address spaces to allow a 275 # Asan agent is compiled without large address spaces to allow a
275 # memory optimization on the shadow memory. Agents should run in both 276 # memory optimization on the shadow memory. Agents should run in both
276 # modes, thus in the long term, we should remove this. 277 # modes, thus in the long term, we should remove this.
277 # Disable support for large address spaces. 278 # Disable support for large address spaces.
278 'LargeAddressAware': 1, 279 'LargeAddressAware': 1,
279 }, 280 },
280 }, 281 },
281 }, 282 },
282 ], 283 ],
283 } 284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698