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 5333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5344 '-fmsc-version=1800', | 5344 '-fmsc-version=1800', |
5345 '/fallback', | 5345 '/fallback', |
5346 | 5346 |
5347 # Many files use intrinsics without including this header. | 5347 # Many files use intrinsics without including this header. |
5348 # TODO(hans): Fix those files, or move this to sub-GYPs. | 5348 # TODO(hans): Fix those files, or move this to sub-GYPs. |
5349 '/FIIntrin.h', | 5349 '/FIIntrin.h', |
5350 | 5350 |
5351 # TODO(hans): Make this list shorter eventually. | 5351 # TODO(hans): Make this list shorter eventually. |
5352 '-Qunused-arguments', | 5352 '-Qunused-arguments', |
5353 '-Wno-c++11-compat-deprecated-writable-strings', | 5353 '-Wno-c++11-compat-deprecated-writable-strings', |
5354 '-Wno-char-subscripts', | |
5355 '-Wno-deprecated-declarations', | 5354 '-Wno-deprecated-declarations', |
5356 '-Wno-deprecated-register', | |
5357 '-Wno-empty-body', | 5355 '-Wno-empty-body', |
5358 '-Wno-enum-conversion', | 5356 '-Wno-enum-conversion', |
5359 '-Wno-extra-tokens', | 5357 '-Wno-extra-tokens', |
5360 '-Wno-ignored-attributes', | 5358 '-Wno-ignored-attributes', |
5361 '-Wno-incompatible-pointer-types', | 5359 '-Wno-incompatible-pointer-types', |
5362 '-Wno-int-to-void-pointer-cast', | 5360 '-Wno-int-to-void-pointer-cast', |
5363 '-Wno-invalid-noreturn', | 5361 '-Wno-invalid-noreturn', |
5364 '-Wno-logical-op-parentheses', | 5362 '-Wno-logical-op-parentheses', |
5365 '-Wno-microsoft', | 5363 '-Wno-microsoft', |
5366 '-Wno-missing-braces', | 5364 '-Wno-missing-braces', |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5631 # settings in target dicts. SYMROOT is a special case, because many other | 5629 # settings in target dicts. SYMROOT is a special case, because many other |
5632 # Xcode variables depend on it, including variables such as | 5630 # Xcode variables depend on it, including variables such as |
5633 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5631 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5634 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5632 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5635 # files to appear (when present) in the UI as actual files and not red | 5633 # files to appear (when present) in the UI as actual files and not red |
5636 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5634 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5637 # and therefore SYMROOT, needs to be set at the project level. | 5635 # and therefore SYMROOT, needs to be set at the project level. |
5638 'SYMROOT': '<(DEPTH)/xcodebuild', | 5636 'SYMROOT': '<(DEPTH)/xcodebuild', |
5639 }, | 5637 }, |
5640 } | 5638 } |
OLD | NEW |