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

Side by Side Diff: build/common.gypi

Issue 11368144: Remove -Wno-asm-operand-widths from Android cflags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 2496 matching lines...) Expand 10 before | Expand all | Expand 10 after
2507 }], 2507 }],
2508 ['clang==1', { 2508 ['clang==1', {
2509 'cflags!': [ 2509 'cflags!': [
2510 # Clang does not support the following options. 2510 # Clang does not support the following options.
2511 '-mthumb-interwork', 2511 '-mthumb-interwork',
2512 '-finline-limit=64', 2512 '-finline-limit=64',
2513 '-fno-tree-sra', 2513 '-fno-tree-sra',
2514 '-fuse-ld=gold', 2514 '-fuse-ld=gold',
2515 '-Wno-psabi', 2515 '-Wno-psabi',
2516 ], 2516 ],
2517 'cflags': [
2518 # TODO(hans): Remove when crbug.com/159452 is fixed.
2519 '-Wno-asm-operand-widths',
2520 ],
2521 }], 2517 }],
2522 ], 2518 ],
2523 }], 2519 }],
2524 ], 2520 ],
2525 }], 2521 }],
2526 ], 2522 ],
2527 }], 2523 }],
2528 ['linux_fpic==1', { 2524 ['linux_fpic==1', {
2529 'cflags': [ 2525 'cflags': [
2530 '-fPIC', 2526 '-fPIC',
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
3739 # settings in target dicts. SYMROOT is a special case, because many other 3735 # settings in target dicts. SYMROOT is a special case, because many other
3740 # Xcode variables depend on it, including variables such as 3736 # Xcode variables depend on it, including variables such as
3741 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3737 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3742 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3738 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3743 # files to appear (when present) in the UI as actual files and not red 3739 # files to appear (when present) in the UI as actual files and not red
3744 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3740 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3745 # and therefore SYMROOT, needs to be set at the project level. 3741 # and therefore SYMROOT, needs to be set at the project level.
3746 'SYMROOT': '<(DEPTH)/xcodebuild', 3742 'SYMROOT': '<(DEPTH)/xcodebuild',
3747 }, 3743 },
3748 } 3744 }
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