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

Side by Side Diff: build/common.gypi

Issue 369833003: Fix orderfile buildbot by excluding SaturatedArithmetic.h from instrumentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 4112 matching lines...) Expand 10 before | Expand all | Expand 10 after
4123 '-finstrument-functions', 4123 '-finstrument-functions',
4124 # Allow mmx intrinsics to inline, so that the 4124 # Allow mmx intrinsics to inline, so that the
4125 #0 compiler can expand the intrinsics. 4125 #0 compiler can expand the intrinsics.
4126 '-finstrument-functions-exclude-file-list=mmintrin.h', 4126 '-finstrument-functions-exclude-file-list=mmintrin.h',
4127 ], 4127 ],
4128 }], 4128 }],
4129 ['_toolset=="target" and OS=="android"', { 4129 ['_toolset=="target" and OS=="android"', {
4130 'cflags': [ 4130 'cflags': [
4131 # Avoids errors with current NDK: 4131 # Avoids errors with current NDK:
4132 # "third_party/android_tools/ndk/toolchains/arm-linux-androide abi-4.6/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.6/include/a rm_neon.h:3426:3: error: argument must be a constant" 4132 # "third_party/android_tools/ndk/toolchains/arm-linux-androide abi-4.6/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.6/include/a rm_neon.h:3426:3: error: argument must be a constant"
4133 '-finstrument-functions-exclude-file-list=arm_neon.h', 4133 '-finstrument-functions-exclude-file-list=arm_neon.h,Saturated ArithmeticARM.h',
4134 ], 4134 ],
4135 }], 4135 }],
4136 ], 4136 ],
4137 }], 4137 }],
4138 ['linux_dump_symbols==1', { 4138 ['linux_dump_symbols==1', {
4139 'cflags': [ '-g' ], 4139 'cflags': [ '-g' ],
4140 'conditions': [ 4140 'conditions': [
4141 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0' , { 4141 ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0' , {
4142 'target_conditions': [ 4142 'target_conditions': [
4143 ['_toolset=="target"', { 4143 ['_toolset=="target"', {
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after
5614 # settings in target dicts. SYMROOT is a special case, because many other 5614 # settings in target dicts. SYMROOT is a special case, because many other
5615 # Xcode variables depend on it, including variables such as 5615 # Xcode variables depend on it, including variables such as
5616 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5616 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5617 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5617 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5618 # files to appear (when present) in the UI as actual files and not red 5618 # files to appear (when present) in the UI as actual files and not red
5619 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5619 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5620 # and therefore SYMROOT, needs to be set at the project level. 5620 # and therefore SYMROOT, needs to be set at the project level.
5621 'SYMROOT': '<(DEPTH)/xcodebuild', 5621 'SYMROOT': '<(DEPTH)/xcodebuild',
5622 }, 5622 },
5623 } 5623 }
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