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

Side by Side Diff: build/standalone.gypi

Issue 864093004: Revert of Reland Make clang the default on linux. (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 | 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'os_posix%': 0, 113 'os_posix%': 0,
114 }, { 114 }, {
115 'os_posix%': 1, 115 'os_posix%': 1,
116 }], 116 }],
117 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87 ") and \ 117 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87 ") and \
118 (OS=="linux" or OS=="mac")', { 118 (OS=="linux" or OS=="mac")', {
119 'v8_enable_gdbjit%': 1, 119 'v8_enable_gdbjit%': 1,
120 }, { 120 }, {
121 'v8_enable_gdbjit%': 0, 121 'v8_enable_gdbjit%': 0,
122 }], 122 }],
123 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64 ")', { 123 ['OS=="mac"', {
124 'clang%': 1, 124 'clang%': 1,
125 }, { 125 }, {
126 'clang%': 0, 126 'clang%': 0,
127 }], 127 }],
128 ], 128 ],
129 # Default ARM variable settings. 129 # Default ARM variable settings.
130 'arm_version%': 'default', 130 'arm_version%': 'default',
131 'arm_fpu%': 'vfpv3', 131 'arm_fpu%': 'vfpv3',
132 'arm_float_abi%': 'default', 132 'arm_float_abi%': 'default',
133 'arm_thumb': 'default', 133 'arm_thumb': 'default',
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 ], 470 ],
471 }], 471 }],
472 ['clang==1 and OS=="win"', { 472 ['clang==1 and OS=="win"', {
473 'make_global_settings': [ 473 'make_global_settings': [
474 # On Windows, gyp's ninja generator only looks at CC. 474 # On Windows, gyp's ninja generator only looks at CC.
475 ['CC', '<(make_clang_dir)/bin/clang-cl'], 475 ['CC', '<(make_clang_dir)/bin/clang-cl'],
476 ], 476 ],
477 }], 477 }],
478 ], 478 ],
479 } 479 }
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