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 2611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2622 '-Wno-deprecated-register', | 2622 '-Wno-deprecated-register', |
2623 | 2623 |
2624 # TODO(hans): Get this cleaned up, http://crbug.com/428099 | 2624 # TODO(hans): Get this cleaned up, http://crbug.com/428099 |
2625 '-Wno-inconsistent-missing-override', | 2625 '-Wno-inconsistent-missing-override', |
2626 | 2626 |
2627 # TODO(thakis): Enable this, crbug.com/507717 | 2627 # TODO(thakis): Enable this, crbug.com/507717 |
2628 '-Wno-shift-negative-value', | 2628 '-Wno-shift-negative-value', |
2629 | 2629 |
2630 # TODO(thakis): https://crbug.com/604888 | 2630 # TODO(thakis): https://crbug.com/604888 |
2631 '-Wno-undefined-var-template', | 2631 '-Wno-undefined-var-template', |
2632 | |
2633 # TODO(eugenis): Clean up, http://crbug.com/619640 | |
2634 "-Wno-address-of-packed-member", | |
hans
2016/06/13 18:36:46
Since this is a new warning flag, the currently us
| |
2632 ], | 2635 ], |
2633 }, | 2636 }, |
2634 'includes': [ 'set_clang_warning_flags.gypi', ], | 2637 'includes': [ 'set_clang_warning_flags.gypi', ], |
2635 'defines': [ | 2638 'defines': [ |
2636 # Don't use deprecated V8 APIs anywhere. | 2639 # Don't use deprecated V8 APIs anywhere. |
2637 'V8_DEPRECATION_WARNINGS', | 2640 'V8_DEPRECATION_WARNINGS', |
2638 ], | 2641 ], |
2639 'include_dirs': [ | 2642 'include_dirs': [ |
2640 '<(SHARED_INTERMEDIATE_DIR)', | 2643 '<(SHARED_INTERMEDIATE_DIR)', |
2641 ], | 2644 ], |
(...skipping 3696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6338 # settings in target dicts. SYMROOT is a special case, because many other | 6341 # settings in target dicts. SYMROOT is a special case, because many other |
6339 # Xcode variables depend on it, including variables such as | 6342 # Xcode variables depend on it, including variables such as |
6340 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6343 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6341 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6344 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6342 # files to appear (when present) in the UI as actual files and not red | 6345 # files to appear (when present) in the UI as actual files and not red |
6343 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6346 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6344 # and therefore SYMROOT, needs to be set at the project level. | 6347 # and therefore SYMROOT, needs to be set at the project level. |
6345 'SYMROOT': '<(DEPTH)/xcodebuild', | 6348 'SYMROOT': '<(DEPTH)/xcodebuild', |
6346 }, | 6349 }, |
6347 } | 6350 } |
OLD | NEW |