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

Side by Side Diff: build/standalone.gypi

Issue 1252913007: Enable gdb-jit for PPC64 on Linux (both big-endian and little-endian). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Correct white-space issues. Created 5 years, 4 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 | src/gdb-jit.cc » ('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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 ['OS=="win" and use_goma==1', { 172 ['OS=="win" and use_goma==1', {
173 # goma doesn't support pch yet. 173 # goma doesn't support pch yet.
174 'chromium_win_pch': 0, 174 'chromium_win_pch': 0,
175 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. 175 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
176 'conditions': [ 176 'conditions': [
177 ['win_z7==0 and fastbuild==0', { 177 ['win_z7==0 and fastbuild==0', {
178 'fastbuild': 1, 178 'fastbuild': 1,
179 }], 179 }],
180 ], 180 ],
181 }], 181 }],
182 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87 ") and \ 182 ['((v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x8 7") and \
183 (OS=="linux" or OS=="mac")', { 183 (OS=="linux" or OS=="mac")) or (v8_target_arch=="ppc64" and OS=="linux") ', {
184 'v8_enable_gdbjit%': 1, 184 'v8_enable_gdbjit%': 1,
185 }, { 185 }, {
186 'v8_enable_gdbjit%': 0, 186 'v8_enable_gdbjit%': 0,
187 }], 187 }],
188 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64 ") and \ 188 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64 ") and \
189 (v8_target_arch!="x87" and v8_target_arch!="x32")', { 189 (v8_target_arch!="x87" and v8_target_arch!="x32")', {
190 'clang%': 1, 190 'clang%': 1,
191 }, { 191 }, {
192 'clang%': 0, 192 'clang%': 0,
193 }], 193 }],
(...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { 1139 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
1140 'make_global_settings': [ 1140 'make_global_settings': [
1141 ['CC_wrapper', '<(gomadir)/gomacc'], 1141 ['CC_wrapper', '<(gomadir)/gomacc'],
1142 ['CXX_wrapper', '<(gomadir)/gomacc'], 1142 ['CXX_wrapper', '<(gomadir)/gomacc'],
1143 ['CC.host_wrapper', '<(gomadir)/gomacc'], 1143 ['CC.host_wrapper', '<(gomadir)/gomacc'],
1144 ['CXX.host_wrapper', '<(gomadir)/gomacc'], 1144 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
1145 ], 1145 ],
1146 }], 1146 }],
1147 ], 1147 ],
1148 } 1148 }
OLDNEW
« no previous file with comments | « no previous file | src/gdb-jit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698