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 3069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3080 'defines': ['USE_NSS_CERTS=1'], | 3080 'defines': ['USE_NSS_CERTS=1'], |
3081 }], | 3081 }], |
3082 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', { | 3082 ['<(chromeos)==1 and >(nacl_untrusted_build)==0', { |
3083 'defines': ['OS_CHROMEOS=1'], | 3083 'defines': ['OS_CHROMEOS=1'], |
3084 }], | 3084 }], |
3085 ['enable_wexit_time_destructors==1 and OS!="win"', { | 3085 ['enable_wexit_time_destructors==1 and OS!="win"', { |
3086 # TODO: Enable on Windows too, http://crbug.com/404525 | 3086 # TODO: Enable on Windows too, http://crbug.com/404525 |
3087 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']}, | 3087 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']}, |
3088 }], | 3088 }], |
3089 ['chromium_code==0', { | 3089 ['chromium_code==0', { |
| 3090 'variables': { |
| 3091 'clang_warning_flags': [ |
| 3092 '-Wno-incompatible-pointer-types', |
| 3093 ] |
| 3094 }, |
3090 'conditions': [ | 3095 'conditions': [ |
3091 [ 'os_posix==1 and OS!="mac" and OS!="ios"', { | 3096 [ 'os_posix==1 and OS!="mac" and OS!="ios"', { |
3092 # We don't want to get warnings from third-party code, | 3097 # We don't want to get warnings from third-party code, |
3093 # so remove any existing warning-enabling flags like -Wall. | 3098 # so remove any existing warning-enabling flags like -Wall. |
3094 'cflags!': [ | 3099 'cflags!': [ |
3095 '-Wall', | 3100 '-Wall', |
3096 '-Wextra', | 3101 '-Wextra', |
3097 ], | 3102 ], |
3098 'cflags_cc': [ | 3103 'cflags_cc': [ |
3099 # Don't warn about hash_map in third-party code. | 3104 # Don't warn about hash_map in third-party code. |
(...skipping 2596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5696 'AdditionalOptions': [ | 5701 'AdditionalOptions': [ |
5697 # Many files use intrinsics without including this header. | 5702 # Many files use intrinsics without including this header. |
5698 # TODO(hans): Fix those files, or move this to sub-GYPs. | 5703 # TODO(hans): Fix those files, or move this to sub-GYPs. |
5699 '/FIIntrin.h', | 5704 '/FIIntrin.h', |
5700 | 5705 |
5701 # TODO(hans): Make this list shorter eventually, http://crbug.
com/504657 | 5706 # TODO(hans): Make this list shorter eventually, http://crbug.
com/504657 |
5702 '-Qunused-arguments', # http://crbug.com/504658 | 5707 '-Qunused-arguments', # http://crbug.com/504658 |
5703 '-Wno-empty-body', # http://crbug.com/504661 | 5708 '-Wno-empty-body', # http://crbug.com/504661 |
5704 '-Wno-extra-tokens', # http://crbug.com/504663 | 5709 '-Wno-extra-tokens', # http://crbug.com/504663 |
5705 '-Wno-ignored-attributes', # http://crbug.com/504695 | 5710 '-Wno-ignored-attributes', # http://crbug.com/504695 |
5706 '-Wno-incompatible-pointer-types', # http://crbug.com/504696 | |
5707 '-Wno-int-to-void-pointer-cast', # http://crbug.com/504697 | 5711 '-Wno-int-to-void-pointer-cast', # http://crbug.com/504697 |
5708 '-Wno-invalid-noreturn', # http://crbug.com/504698 | 5712 '-Wno-invalid-noreturn', # http://crbug.com/504698 |
5709 '-Wno-logical-op-parentheses', # http://crbug.com/504699 | 5713 '-Wno-logical-op-parentheses', # http://crbug.com/504699 |
5710 '-Wno-microsoft', # http://crbug.com/505296 | 5714 '-Wno-microsoft', # http://crbug.com/505296 |
5711 '-Wno-missing-braces', # http://crbug.com/505297 | 5715 '-Wno-missing-braces', # http://crbug.com/505297 |
5712 '-Wno-msvc-include', # http://crbug.com/505299 | 5716 '-Wno-msvc-include', # http://crbug.com/505299 |
5713 '-Wno-overloaded-virtual', # http://crbug.com/505301 | 5717 '-Wno-overloaded-virtual', # http://crbug.com/505301 |
5714 '-Wno-pointer-sign', # http://crbug.com/505303 | 5718 '-Wno-pointer-sign', # http://crbug.com/505303 |
5715 '-Wno-reorder', # http://crbug.com/505304 | 5719 '-Wno-reorder', # http://crbug.com/505304 |
5716 '-Wno-sometimes-uninitialized', # http://crbug.com/505307 | 5720 '-Wno-sometimes-uninitialized', # http://crbug.com/505307 |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6190 # settings in target dicts. SYMROOT is a special case, because many other | 6194 # settings in target dicts. SYMROOT is a special case, because many other |
6191 # Xcode variables depend on it, including variables such as | 6195 # Xcode variables depend on it, including variables such as |
6192 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6196 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6193 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6197 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6194 # files to appear (when present) in the UI as actual files and not red | 6198 # files to appear (when present) in the UI as actual files and not red |
6195 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6199 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6196 # and therefore SYMROOT, needs to be set at the project level. | 6200 # and therefore SYMROOT, needs to be set at the project level. |
6197 'SYMROOT': '<(DEPTH)/xcodebuild', | 6201 'SYMROOT': '<(DEPTH)/xcodebuild', |
6198 }, | 6202 }, |
6199 } | 6203 } |
OLD | NEW |