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

Side by Side Diff: build/common.gypi

Issue 10810006: MIPS: Fix mipsel GYP build on Emdebian. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 5 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 | « 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 ['v8_target_arch=="ia32"', { 157 ['v8_target_arch=="ia32"', {
158 'defines': [ 158 'defines': [
159 'V8_TARGET_ARCH_IA32', 159 'V8_TARGET_ARCH_IA32',
160 ], 160 ],
161 }], # v8_target_arch=="ia32" 161 }], # v8_target_arch=="ia32"
162 ['v8_target_arch=="mipsel"', { 162 ['v8_target_arch=="mipsel"', {
163 'defines': [ 163 'defines': [
164 'V8_TARGET_ARCH_MIPS', 164 'V8_TARGET_ARCH_MIPS',
165 ], 165 ],
166 'variables': { 166 'variables': {
167 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^T arget: mips-" && echo "yes" || echo "no")', 167 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q "^T arget: mips" && echo "yes" || echo "no")',
168 }, 168 },
169 'conditions': [ 169 'conditions': [
170 ['mipscompiler=="yes"', { 170 ['mipscompiler=="yes"', {
171 'target_conditions': [ 171 'target_conditions': [
172 ['_toolset=="target"', { 172 ['_toolset=="target"', {
173 'cflags': ['-EL'], 173 'cflags': ['-EL'],
174 'ldflags': ['-EL'], 174 'ldflags': ['-EL'],
175 'conditions': [ 175 'conditions': [
176 [ 'v8_use_mips_abi_hardfloat=="true"', { 176 [ 'v8_use_mips_abi_hardfloat=="true"', {
177 'cflags': ['-mhard-float'], 177 'cflags': ['-mhard-float'],
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 'OptimizeReferences': '2', 395 'OptimizeReferences': '2',
396 'EnableCOMDATFolding': '2', 396 'EnableCOMDATFolding': '2',
397 }, 397 },
398 }, 398 },
399 }], # OS=="win" 399 }], # OS=="win"
400 ], # conditions 400 ], # conditions
401 }, # Release 401 }, # Release
402 }, # configurations 402 }, # configurations
403 }, # target_defaults 403 }, # target_defaults
404 } 404 }
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