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