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 2476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2487 }], | 2487 }], |
2488 ], | 2488 ], |
2489 }], | 2489 }], |
2490 [ 'OS=="ios"', { | 2490 [ 'OS=="ios"', { |
2491 'xcode_settings': { | 2491 'xcode_settings': { |
2492 # TODO(ios): Fix remaining warnings in third-party code, then | 2492 # TODO(ios): Fix remaining warnings in third-party code, then |
2493 # remove this; the Mac cleanup didn't get everything that's | 2493 # remove this; the Mac cleanup didn't get everything that's |
2494 # flagged in an iOS build. | 2494 # flagged in an iOS build. |
2495 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', | 2495 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', |
2496 'RUN_CLANG_STATIC_ANALYZER': 'NO', | 2496 'RUN_CLANG_STATIC_ANALYZER': 'NO', |
| 2497 # Several internal ios directories generate numerous warnings for |
| 2498 # -Wobjc-missing-property-synthesis. |
| 2499 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', |
2497 }, | 2500 }, |
2498 }], | 2501 }], |
2499 ], | 2502 ], |
2500 }, { | 2503 }, { |
2501 'includes': [ | 2504 'includes': [ |
2502 # Rules for excluding e.g. foo_win.cc from the build on non-Windows. | 2505 # Rules for excluding e.g. foo_win.cc from the build on non-Windows. |
2503 'filename_rules.gypi', | 2506 'filename_rules.gypi', |
2504 ], | 2507 ], |
2505 # In Chromium code, we define __STDC_foo_MACROS in order to get the | 2508 # In Chromium code, we define __STDC_foo_MACROS in order to get the |
2506 # C99 macros on Mac and Linux. | 2509 # C99 macros on Mac and Linux. |
(...skipping 2204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4711 # settings in target dicts. SYMROOT is a special case, because many other | 4714 # settings in target dicts. SYMROOT is a special case, because many other |
4712 # Xcode variables depend on it, including variables such as | 4715 # Xcode variables depend on it, including variables such as |
4713 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4716 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4714 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4717 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4715 # files to appear (when present) in the UI as actual files and not red | 4718 # files to appear (when present) in the UI as actual files and not red |
4716 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4719 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4717 # and therefore SYMROOT, needs to be set at the project level. | 4720 # and therefore SYMROOT, needs to be set at the project level. |
4718 'SYMROOT': '<(DEPTH)/xcodebuild', | 4721 'SYMROOT': '<(DEPTH)/xcodebuild', |
4719 }, | 4722 }, |
4720 } | 4723 } |
OLD | NEW |