Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: ios/chrome/ios_chrome.gyp

Issue 1548323002: Add -Wno-deprecated-declarations on iOS in preparation of changing SDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ios/crnet/test/crnet_test.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 'browser/safe_browsing/safe_browsing_service.cc', 653 'browser/safe_browsing/safe_browsing_service.cc',
654 'browser/safe_browsing/safe_browsing_service.h', 654 'browser/safe_browsing/safe_browsing_service.h',
655 'browser/safe_browsing/ui_manager.cc', 655 'browser/safe_browsing/ui_manager.cc',
656 'browser/safe_browsing/ui_manager.h', 656 'browser/safe_browsing/ui_manager.h',
657 ], 657 ],
658 'dependencies': [ 658 'dependencies': [
659 'ios_chrome_safe_browsing_proto', 659 'ios_chrome_safe_browsing_proto',
660 ], 660 ],
661 }] 661 }]
662 ], 662 ],
663 # TODO(crbug.com/569158): Suppresses warnings that are treated as errors
664 # when minimum iOS version support is increased to iOS 9 and up.
665 # This should be removed once all deprecation violations have been fixed.
666 'xcode_settings': {
667 'WARNING_CFLAGS': [
668 '-Wno-deprecated-declarations',
669 ],
670 },
663 }, 671 },
664 { 672 {
665 # GN version: //ios/chrome/browser:about_flags 673 # GN version: //ios/chrome/browser:about_flags
666 # This is a separate target so that the 'defines' does not leak to the 674 # This is a separate target so that the 'defines' does not leak to the
667 # other files (which would increase the compilation time when changing 675 # other files (which would increase the compilation time when changing
668 # the value). 676 # the value).
669 'target_name': 'ios_chrome_browser_about_flags', 677 'target_name': 'ios_chrome_browser_about_flags',
670 'type': 'static_library', 678 'type': 'static_library',
671 'include_dirs': [ 679 'include_dirs': [
672 '../..', 680 '../..',
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 'variables': { 843 'variables': {
836 'proto_in_dir': 'browser/safe_browsing', 844 'proto_in_dir': 'browser/safe_browsing',
837 'proto_out_dir': 'ios/chrome/browser/safe_browsing', 845 'proto_out_dir': 'ios/chrome/browser/safe_browsing',
838 }, 846 },
839 'includes': [ '../../build/protoc.gypi' ], 847 'includes': [ '../../build/protoc.gypi' ],
840 }, 848 },
841 ], 849 ],
842 }], 850 }],
843 ], 851 ],
844 } 852 }
OLDNEW
« no previous file with comments | « no previous file | ios/crnet/test/crnet_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698