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

Side by Side Diff: build/standalone.gypi

Issue 18830003: Update standalone configuration for compiling icu on windows (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'cflags!': [ 121 'cflags!': [
122 '-Werror', 122 '-Werror',
123 ], 123 ],
124 }], 124 }],
125 ['OS == "mac"', { 125 ['OS == "mac"', {
126 'xcode_settings': { 126 'xcode_settings': {
127 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror 127 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror
128 }, 128 },
129 }], 129 }],
130 ['OS == "win"', { 130 ['OS == "win"', {
131 'defines!': [
132 'DEBUG',
133 ],
131 'msvs_settings': { 134 'msvs_settings': {
132 'VCCLCompilerTool': { 135 'VCCLCompilerTool': {
133 'WarnAsError': 'false', 136 'WarnAsError': 'false',
134 }, 137 },
135 }, 138 },
136 }], 139 }],
137 ], 140 ],
138 }], 141 }],
139 ], 142 ],
140 }, 143 },
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 # LinkIncremental values: 214 # LinkIncremental values:
212 # 0 == default 215 # 0 == default
213 # 1 == /INCREMENTAL:NO 216 # 1 == /INCREMENTAL:NO
214 # 2 == /INCREMENTAL 217 # 2 == /INCREMENTAL
215 'LinkIncremental': '1', 218 'LinkIncremental': '1',
216 # SubSystem values: 219 # SubSystem values:
217 # 0 == not set 220 # 0 == not set
218 # 1 == /SUBSYSTEM:CONSOLE 221 # 1 == /SUBSYSTEM:CONSOLE
219 # 2 == /SUBSYSTEM:WINDOWS 222 # 2 == /SUBSYSTEM:WINDOWS
220 'SubSystem': '1', 223 'SubSystem': '1',
224
225 'conditions': [
226 ['v8_enable_i18n_support==1', {
227 'AdditionalDependencies': [
228 'advapi32.lib',
229 ],
230 }],
231 ],
221 }, 232 },
222 }, 233 },
223 }, 234 },
224 }], # OS=="win" 235 }], # OS=="win"
225 ['OS=="mac"', { 236 ['OS=="mac"', {
226 'xcode_settings': { 237 'xcode_settings': {
227 'SYMROOT': '<(DEPTH)/xcodebuild', 238 'SYMROOT': '<(DEPTH)/xcodebuild',
228 }, 239 },
229 'target_defaults': { 240 'target_defaults': {
230 'xcode_settings': { 241 'xcode_settings': {
(...skipping 30 matching lines...) Expand all
261 }, 272 },
262 'target_conditions': [ 273 'target_conditions': [
263 ['_type!="static_library"', { 274 ['_type!="static_library"', {
264 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 275 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
265 }], 276 }],
266 ], # target_conditions 277 ], # target_conditions
267 }, # target_defaults 278 }, # target_defaults
268 }], # OS=="mac" 279 }], # OS=="mac"
269 ], 280 ],
270 } 281 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698