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

Side by Side Diff: build/standalone.gypi

Issue 798653006: Don't use -O3 with sanitizers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | build/toolchain.gypi » ('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 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 17 matching lines...) Expand all
28 # Definitions to be used when building stand-alone V8 binaries. 28 # Definitions to be used when building stand-alone V8 binaries.
29 29
30 { 30 {
31 # We need to include toolchain.gypi here for third-party sources that don't 31 # We need to include toolchain.gypi here for third-party sources that don't
32 # directly include it themselves. 32 # directly include it themselves.
33 'includes': ['toolchain.gypi'], 33 'includes': ['toolchain.gypi'],
34 'variables': { 34 'variables': {
35 'component%': 'static_library', 35 'component%': 'static_library',
36 'make_clang_dir%': '../third_party/llvm-build/Release+Asserts', 36 'make_clang_dir%': '../third_party/llvm-build/Release+Asserts',
37 'clang_xcode%': 0, 37 'clang_xcode%': 0,
38 'asan%': 0,
39 'tsan%': 0,
40 'visibility%': 'hidden', 38 'visibility%': 'hidden',
41 'v8_enable_backtrace%': 0, 39 'v8_enable_backtrace%': 0,
42 'v8_enable_i18n_support%': 1, 40 'v8_enable_i18n_support%': 1,
43 'v8_deprecation_warnings': 1, 41 'v8_deprecation_warnings': 1,
44 'msvs_multi_core_compile%': '1', 42 'msvs_multi_core_compile%': '1',
45 'mac_deployment_target%': '10.5', 43 'mac_deployment_target%': '10.5',
46 'variables': { 44 'variables': {
47 'variables': { 45 'variables': {
48 'variables': { 46 'variables': {
49 'conditions': [ 47 'conditions': [
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 ], 470 ],
473 }], 471 }],
474 ['clang==1 and OS=="win"', { 472 ['clang==1 and OS=="win"', {
475 'make_global_settings': [ 473 'make_global_settings': [
476 # On Windows, gyp's ninja generator only looks at CC. 474 # On Windows, gyp's ninja generator only looks at CC.
477 ['CC', '<(make_clang_dir)/bin/clang-cl'], 475 ['CC', '<(make_clang_dir)/bin/clang-cl'],
478 ], 476 ],
479 }], 477 }],
480 ], 478 ],
481 } 479 }
OLDNEW
« no previous file with comments | « no previous file | build/toolchain.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698