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

Side by Side Diff: components/cronet.gypi

Issue 1947903003: Cronet Dynamic Framework for iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Misha's comments. Created 4 years, 7 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 | components/cronet/ios/Cronet.mm » ('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 'conditions': [ 6 'conditions': [
7 ['OS=="android"', { 7 ['OS=="android"', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'cronet_jni_headers', 10 'target_name': 'cronet_jni_headers',
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 'sources': [ 790 'sources': [
791 'cronet/ios/Cronet.h', 791 'cronet/ios/Cronet.h',
792 'cronet/ios/Cronet.mm', 792 'cronet/ios/Cronet.mm',
793 ], 793 ],
794 'dependencies': [ 794 'dependencies': [
795 'cronet_static', 795 'cronet_static',
796 '../base/base.gyp:base', 796 '../base/base.gyp:base',
797 ], 797 ],
798 }, 798 },
799 { 799 {
800 'target_name': 'cronet_framework',
801 'product_name': 'Cronet',
802 'type': 'shared_library',
803 'mac_bundle': 1,
804 'sources': [
805 'cronet/ios/Cronet.h',
806 'cronet/ios/cronet_c_for_grpc.h',
807 'cronet/ios/empty.cc',
808 ],
809 'mac_framework_headers': [
810 'cronet/ios/Cronet.h',
811 'cronet/ios/cronet_c_for_grpc.h',
812 ],
813 'link_settings': {
814 'libraries': [
815 'Foundation.framework',
816 ],
817 },
818 'xcode_settings': {
819 'DEBUGGING_SYMBOLS': 'YES',
820 'INFOPLIST_FILE': 'cronet/ios/Info.plist',
821 'LD_DYLIB_INSTALL_NAME': '@loader_path/Frameworks/Cronet.framework/C ronet',
822 },
823 'dependencies': [
824 'cronet_static',
825 '../base/base.gyp:base',
826 ],
827 'configurations': {
828 'Debug_Base': {
829 'xcode_settings': {
830 'DEPLOYMENT_POSTPROCESSING': 'NO',
831 'DEBUG_INFORMATION_FORMAT': 'dwarf',
832 'STRIP_INSTALLED_PRODUCT': 'NO',
833 }
834 },
835 'Release_Base': {
836 'xcode_settings': {
837 'DEPLOYMENT_POSTPROCESSING': 'YES',
838 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
839 'STRIP_INSTALLED_PRODUCT': 'YES',
840 'STRIP_STYLE': 'non-global',
841 }
842 },
843 },
844 },
845 {
800 'target_name': 'cronet_test', 846 'target_name': 'cronet_test',
801 'type': 'executable', 847 'type': 'executable',
802 'dependencies': [ 848 'dependencies': [
803 'cronet_static', 849 'cronet_static',
804 '../net/net.gyp:net_quic_proto', 850 '../net/net.gyp:net_quic_proto',
805 '../net/net.gyp:net_test_support', 851 '../net/net.gyp:net_test_support',
806 '../net/net.gyp:simple_quic_tools', 852 '../net/net.gyp:simple_quic_tools',
807 '../testing/gtest.gyp:gtest', 853 '../testing/gtest.gyp:gtest',
808 ], 854 ],
809 'sources': [ 855 'sources': [
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 'cronet/ios/test/cronet_bidirectional_stream_test.mm', 932 'cronet/ios/test/cronet_bidirectional_stream_test.mm',
887 'cronet/ios/test/cronet_test_runner.mm', 933 'cronet/ios/test/cronet_test_runner.mm',
888 ], 934 ],
889 }, 935 },
890 ], 936 ],
891 }, 937 },
892 ], 938 ],
893 }], # OS=="ios" 939 }], # OS=="ios"
894 ], 940 ],
895 } 941 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/ios/Cronet.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698