| 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 5388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5399 '-Wno-self-assign', | 5399 '-Wno-self-assign', |
| 5400 '-Wno-sometimes-uninitialized', | 5400 '-Wno-sometimes-uninitialized', |
| 5401 '-Wno-switch', | 5401 '-Wno-switch', |
| 5402 '-Wno-tautological-compare', | 5402 '-Wno-tautological-compare', |
| 5403 '-Wno-unknown-pragmas', | 5403 '-Wno-unknown-pragmas', |
| 5404 '-Wno-unsequenced', | 5404 '-Wno-unsequenced', |
| 5405 '-Wno-unused-function', | 5405 '-Wno-unused-function', |
| 5406 '-Wno-unused-private-field', | 5406 '-Wno-unused-private-field', |
| 5407 '-Wno-unused-value', | 5407 '-Wno-unused-value', |
| 5408 '-Wno-unused-variable', | 5408 '-Wno-unused-variable', |
| 5409 '-Wno-exit-time-destructors', # TODO: http://crbug.com/404525 |
| 5409 '-ferror-limit=1', | 5410 '-ferror-limit=1', |
| 5410 ], | 5411 ], |
| 5411 }, | 5412 }, |
| 5412 }], | 5413 }], |
| 5413 ['asan==1', { | 5414 ['asan==1', { |
| 5414 # ASan on Windows is a work in progress and very experimental. | 5415 # ASan on Windows is a work in progress and very experimental. |
| 5415 # See crbug.com/345874. | 5416 # See crbug.com/345874. |
| 5416 'VCCLCompilerTool': { | 5417 'VCCLCompilerTool': { |
| 5417 'AdditionalOptions': [ | 5418 'AdditionalOptions': [ |
| 5418 '-fsanitize=address', | 5419 '-fsanitize=address', |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5662 # settings in target dicts. SYMROOT is a special case, because many other | 5663 # settings in target dicts. SYMROOT is a special case, because many other |
| 5663 # Xcode variables depend on it, including variables such as | 5664 # Xcode variables depend on it, including variables such as |
| 5664 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5665 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5665 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5666 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5666 # files to appear (when present) in the UI as actual files and not red | 5667 # files to appear (when present) in the UI as actual files and not red |
| 5667 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5668 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5668 # and therefore SYMROOT, needs to be set at the project level. | 5669 # and therefore SYMROOT, needs to be set at the project level. |
| 5669 'SYMROOT': '<(DEPTH)/xcodebuild', | 5670 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5670 }, | 5671 }, |
| 5671 } | 5672 } |
| OLD | NEW |