| 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 5555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5566 '-Wno-sometimes-uninitialized', | 5566 '-Wno-sometimes-uninitialized', |
| 5567 '-Wno-switch', | 5567 '-Wno-switch', |
| 5568 '-Wno-tautological-compare', | 5568 '-Wno-tautological-compare', |
| 5569 '-Wno-unknown-pragmas', | 5569 '-Wno-unknown-pragmas', |
| 5570 '-Wno-unsequenced', | 5570 '-Wno-unsequenced', |
| 5571 '-Wno-unused-function', | 5571 '-Wno-unused-function', |
| 5572 '-Wno-unused-private-field', | 5572 '-Wno-unused-private-field', |
| 5573 '-Wno-unused-value', | 5573 '-Wno-unused-value', |
| 5574 '-Wno-unused-variable', | 5574 '-Wno-unused-variable', |
| 5575 '-Wno-unused-local-typedef', # http://crbug.com/411648 | 5575 '-Wno-unused-local-typedef', # http://crbug.com/411648 |
| 5576 '-Wno-inconsistent-missing-override', #http://crbug.com/428099 |
| 5576 ], | 5577 ], |
| 5577 }, | 5578 }, |
| 5578 }], | 5579 }], |
| 5579 ['asan==1', { | 5580 ['asan==1', { |
| 5580 # ASan on Windows is a work in progress and very experimental. | 5581 # ASan on Windows is a work in progress and very experimental. |
| 5581 # See crbug.com/345874. | 5582 # See crbug.com/345874. |
| 5582 'VCCLCompilerTool': { | 5583 'VCCLCompilerTool': { |
| 5583 'AdditionalOptions': [ | 5584 'AdditionalOptions': [ |
| 5584 '-fsanitize=address', | 5585 '-fsanitize=address', |
| 5585 ], | 5586 ], |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5880 # settings in target dicts. SYMROOT is a special case, because many other | 5881 # settings in target dicts. SYMROOT is a special case, because many other |
| 5881 # Xcode variables depend on it, including variables such as | 5882 # Xcode variables depend on it, including variables such as |
| 5882 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5883 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5883 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5884 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5884 # files to appear (when present) in the UI as actual files and not red | 5885 # files to appear (when present) in the UI as actual files and not red |
| 5885 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5886 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5886 # and therefore SYMROOT, needs to be set at the project level. | 5887 # and therefore SYMROOT, needs to be set at the project level. |
| 5887 'SYMROOT': '<(DEPTH)/xcodebuild', | 5888 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5888 }, | 5889 }, |
| 5889 } | 5890 } |
| OLD | NEW |