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

Side by Side Diff: gypfiles/toolchain.gypi

Issue 2023783003: Move gcmole to toolchain.gypi (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « gypfiles/standalone.gypi ('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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 # On by default for x64 Linux. 124 # On by default for x64 Linux.
125 ['OS=="linux" and target_arch=="x64"', { 125 ['OS=="linux" and target_arch=="x64"', {
126 'linux_use_gold_flags%': 1, 126 'linux_use_gold_flags%': 1,
127 }, { 127 }, {
128 'linux_use_gold_flags%': 0, 128 'linux_use_gold_flags%': 0,
129 }], 129 }],
130 ], 130 ],
131 131
132 # Link-Time Optimizations 132 # Link-Time Optimizations
133 'use_lto%': 0, 133 'use_lto%': 0,
134
135 # Indicates if gcmole tools are downloaded by a hook.
136 'gcmole%': 0,
134 }, 137 },
135 'conditions': [ 138 'conditions': [
136 ['host_arch=="ia32" or host_arch=="x64" or \ 139 ['host_arch=="ia32" or host_arch=="x64" or \
137 host_arch=="ppc" or host_arch=="ppc64" or \ 140 host_arch=="ppc" or host_arch=="ppc64" or \
138 host_arch=="s390" or host_arch=="s390x" or \ 141 host_arch=="s390" or host_arch=="s390x" or \
139 clang==1', { 142 clang==1', {
140 'variables': { 143 'variables': {
141 'host_cxx_is_biarch%': 1, 144 'host_cxx_is_biarch%': 1,
142 }, 145 },
143 }, { 146 }, {
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 ], 1388 ],
1386 }, 1389 },
1387 'Release_x64': { 1390 'Release_x64': {
1388 'inherit_from': ['ReleaseBase'], 1391 'inherit_from': ['ReleaseBase'],
1389 }, 1392 },
1390 }], 1393 }],
1391 ], 1394 ],
1392 }, # configurations 1395 }, # configurations
1393 }, # target_defaults 1396 }, # target_defaults
1394 } 1397 }
OLDNEW
« no previous file with comments | « gypfiles/standalone.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698