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

Side by Side Diff: courgette/courgette.gyp

Issue 103333004: Allow Win64 build of base library even in a Win32 build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Base Win64: Address CR feedback 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 | « components/breakpad.gypi ('k') | crypto/crypto.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 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'courgette_lib_sources': [ 8 'courgette_lib_sources': [
9 'adjustment_method.cc', 9 'adjustment_method.cc',
10 'adjustment_method_2.cc', 10 'adjustment_method_2.cc',
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 ], 169 ],
170 }, 170 },
171 ], 171 ],
172 'conditions': [ 172 'conditions': [
173 ['OS=="win" and target_arch=="ia32"', { 173 ['OS=="win" and target_arch=="ia32"', {
174 'targets': [ 174 'targets': [
175 { 175 {
176 'target_name': 'courgette_lib64', 176 'target_name': 'courgette_lib64',
177 'type': 'static_library', 177 'type': 'static_library',
178 'dependencies': [ 178 'dependencies': [
179 '../base/base.gyp:base_nacl_win64', 179 '../base/base.gyp:base_win64',
180 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk64', 180 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk64',
181 ], 181 ],
182 'sources': [ 182 'sources': [
183 '<@(courgette_lib_sources)', 183 '<@(courgette_lib_sources)',
184 ], 184 ],
185 'configurations': { 185 'configurations': {
186 'Common_Base': { 186 'Common_Base': {
187 'msvs_target_platform': 'x64', 187 'msvs_target_platform': 'x64',
188 }, 188 },
189 }, 189 },
190 }, 190 },
191 { 191 {
192 'target_name': 'courgette64', 192 'target_name': 'courgette64',
193 'type': 'executable', 193 'type': 'executable',
194 'sources': [ 194 'sources': [
195 'courgette_tool.cc', 195 'courgette_tool.cc',
196 ], 196 ],
197 'dependencies': [ 197 'dependencies': [
198 'courgette_lib64', 198 'courgette_lib64',
199 '../base/base.gyp:base_nacl_win64', 199 '../base/base.gyp:base_win64',
200 ], 200 ],
201 'configurations': { 201 'configurations': {
202 'Common_Base': { 202 'Common_Base': {
203 'msvs_target_platform': 'x64', 203 'msvs_target_platform': 'x64',
204 }, 204 },
205 }, 205 },
206 }, 206 },
207 ], 207 ],
208 }], 208 }],
209 # The build infrastructure needs courgette to be named courgette64. 209 # The build infrastructure needs courgette to be named courgette64.
(...skipping 18 matching lines...) Expand all
228 '../build/cp.py', 228 '../build/cp.py',
229 '<@(_inputs)', 229 '<@(_inputs)',
230 '<@(_outputs)' 230 '<@(_outputs)'
231 ], 231 ],
232 }], 232 }],
233 }, 233 },
234 ], 234 ],
235 }], 235 }],
236 ], 236 ],
237 } 237 }
OLDNEW
« no previous file with comments | « components/breakpad.gypi ('k') | crypto/crypto.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698