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

Side by Side Diff: build/toolchain.gypi

Issue 181453002: Reset trunk to 3.24.35.4 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 6 years, 10 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 | « build/standalone.gypi ('k') | include/v8.h » ('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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 }], 261 }],
262 ], 262 ],
263 'defines': [ 263 'defines': [
264 'ARM_TEST', 264 'ARM_TEST',
265 ], 265 ],
266 }], 266 }],
267 ], 267 ],
268 }], # _toolset=="target" 268 }], # _toolset=="target"
269 ], 269 ],
270 }], # v8_target_arch=="arm" 270 }], # v8_target_arch=="arm"
271 ['v8_target_arch=="a64"', {
272 'defines': [
273 'V8_TARGET_ARCH_A64',
274 ],
275 }],
276 ['v8_target_arch=="ia32"', { 271 ['v8_target_arch=="ia32"', {
277 'defines': [ 272 'defines': [
278 'V8_TARGET_ARCH_IA32', 273 'V8_TARGET_ARCH_IA32',
279 ], 274 ],
280 }], # v8_target_arch=="ia32" 275 }], # v8_target_arch=="ia32"
281 ['v8_target_arch=="mipsel"', { 276 ['v8_target_arch=="mipsel"', {
282 'defines': [ 277 'defines': [
283 'V8_TARGET_ARCH_MIPS', 278 'V8_TARGET_ARCH_MIPS',
284 ], 279 ],
285 'variables': { 280 'variables': {
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 'cflags': [ '<(m32flag)' ], 400 'cflags': [ '<(m32flag)' ],
406 'ldflags': [ '<(m32flag)' ], 401 'ldflags': [ '<(m32flag)' ],
407 }], 402 }],
408 ], 403 ],
409 'xcode_settings': { 404 'xcode_settings': {
410 'ARCHS': [ 'i386' ], 405 'ARCHS': [ 'i386' ],
411 }, 406 },
412 }], 407 }],
413 ], 408 ],
414 }], 409 }],
415 ['(OS=="linux" or OS=="android") and \ 410 ['(OS=="linux") and (v8_target_arch=="x64")', {
416 (v8_target_arch=="x64" or v8_target_arch=="a64")', {
417 # Check whether the host compiler and target compiler support the 411 # Check whether the host compiler and target compiler support the
418 # '-m64' option and set it if so. 412 # '-m64' option and set it if so.
419 'target_conditions': [ 413 'target_conditions': [
420 ['_toolset=="host"', { 414 ['_toolset=="host"', {
421 'variables': { 415 'variables': {
422 'm64flag': '<!(($(echo ${CXX_host:-$(which g++)}) -m64 -E - > /dev /null 2>&1 < /dev/null) && echo "-m64" || true)', 416 'm64flag': '<!(($(echo ${CXX_host:-$(which g++)}) -m64 -E - > /dev /null 2>&1 < /dev/null) && echo "-m64" || true)',
423 }, 417 },
424 'cflags': [ '<(m64flag)' ], 418 'cflags': [ '<(m64flag)' ],
425 'ldflags': [ '<(m64flag)' ], 419 'ldflags': [ '<(m64flag)' ],
426 }], 420 }],
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 'EnableCOMDATFolding': '2', 506 'EnableCOMDATFolding': '2',
513 }], 507 }],
514 ], 508 ],
515 }, 509 },
516 }, 510 },
517 'conditions': [ 511 'conditions': [
518 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \ 512 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \
519 OS=="qnx"', { 513 OS=="qnx"', {
520 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', 514 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter',
521 '-Wnon-virtual-dtor', '-Woverloaded-virtual', 515 '-Wnon-virtual-dtor', '-Woverloaded-virtual',
522 '<(wno_array_bounds)', 516 '<(wno_array_bounds)' ],
523 ],
524 'conditions': [ 517 'conditions': [
525 ['v8_optimized_debug==0', { 518 ['v8_optimized_debug==0', {
526 'cflags!': [ 519 'cflags!': [
527 '-O0', 520 '-O0',
528 '-O3', 521 '-O3',
529 '-O2', 522 '-O2',
530 '-O1', 523 '-O1',
531 '-Os', 524 '-Os',
532 ], 525 ],
533 'cflags': [ 526 'cflags': [
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 'OptimizeReferences': '2', 688 'OptimizeReferences': '2',
696 'EnableCOMDATFolding': '2', 689 'EnableCOMDATFolding': '2',
697 }, 690 },
698 }, 691 },
699 }], # OS=="win" 692 }], # OS=="win"
700 ], # conditions 693 ], # conditions
701 }, # Release 694 }, # Release
702 }, # configurations 695 }, # configurations
703 }, # target_defaults 696 }, # target_defaults
704 } 697 }
OLDNEW
« no previous file with comments | « build/standalone.gypi ('k') | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698