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

Side by Side Diff: build/toolchain.gypi

Issue 220883003: Fix "make arm asan=$CLANG" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 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 | « Makefile ('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 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 'LinkIncremental': '1', 514 'LinkIncremental': '1',
515 'OptimizeReferences': '2', 515 'OptimizeReferences': '2',
516 'EnableCOMDATFolding': '2', 516 'EnableCOMDATFolding': '2',
517 }], 517 }],
518 ], 518 ],
519 }, 519 },
520 }, 520 },
521 'conditions': [ 521 'conditions': [
522 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \ 522 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \
523 OS=="qnx"', { 523 OS=="qnx"', {
524 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', 524 'cflags': [ '-Woverloaded-virtual', '<(wno_array_bounds)', ],
525 '-Wnon-virtual-dtor', '-Woverloaded-virtual',
526 '<(wno_array_bounds)',
527 ],
528 'conditions': [ 525 'conditions': [
529 ['v8_optimized_debug==0', { 526 ['v8_optimized_debug==0', {
530 'cflags!': [ 527 'cflags!': [
531 '-O0', 528 '-O0',
532 '-O3', 529 '-O3',
533 '-O2', 530 '-O2',
534 '-O1', 531 '-O1',
535 '-Os', 532 '-Os',
536 ], 533 ],
537 'cflags': [ 534 'cflags': [
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 'OptimizeReferences': '2', 696 'OptimizeReferences': '2',
700 'EnableCOMDATFolding': '2', 697 'EnableCOMDATFolding': '2',
701 }, 698 },
702 }, 699 },
703 }], # OS=="win" 700 }], # OS=="win"
704 ], # conditions 701 ], # conditions
705 }, # Release 702 }, # Release
706 }, # configurations 703 }, # configurations
707 }, # target_defaults 704 }, # target_defaults
708 } 705 }
OLDNEW
« no previous file with comments | « Makefile ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698