OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |