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 3232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3243 }], | 3243 }], |
3244 ['clang==1', { | 3244 ['clang==1', { |
3245 'cflags!': [ | 3245 'cflags!': [ |
3246 # Clang does not support the following options. | 3246 # Clang does not support the following options. |
3247 '-mthumb-interwork', | 3247 '-mthumb-interwork', |
3248 '-finline-limit=64', | 3248 '-finline-limit=64', |
3249 '-fno-tree-sra', | 3249 '-fno-tree-sra', |
3250 '-fuse-ld=gold', | 3250 '-fuse-ld=gold', |
3251 '-Wno-psabi', | 3251 '-Wno-psabi', |
3252 ], | 3252 ], |
| 3253 'cflags': [ |
| 3254 # TODO(hans) Enable integrated-as (crbug.com/124610). |
| 3255 '-no-integrated-as', |
| 3256 ], |
| 3257 |
3253 'ldflags!': [ | 3258 'ldflags!': [ |
3254 # Clang does not support the following options. | 3259 # Clang does not support the following options. |
3255 '-fuse-ld=gold', | 3260 '-fuse-ld=gold', |
3256 ], | 3261 ], |
3257 }], | 3262 }], |
3258 ], | 3263 ], |
3259 }], | 3264 }], |
3260 ], | 3265 ], |
3261 }], | 3266 }], |
3262 ], | 3267 ], |
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4796 # settings in target dicts. SYMROOT is a special case, because many other | 4801 # settings in target dicts. SYMROOT is a special case, because many other |
4797 # Xcode variables depend on it, including variables such as | 4802 # Xcode variables depend on it, including variables such as |
4798 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4803 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4799 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4804 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4800 # files to appear (when present) in the UI as actual files and not red | 4805 # files to appear (when present) in the UI as actual files and not red |
4801 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4806 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4802 # and therefore SYMROOT, needs to be set at the project level. | 4807 # and therefore SYMROOT, needs to be set at the project level. |
4803 'SYMROOT': '<(DEPTH)/xcodebuild', | 4808 'SYMROOT': '<(DEPTH)/xcodebuild', |
4804 }, | 4809 }, |
4805 } | 4810 } |
OLD | NEW |