OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 'export_dependent_settings': [ | 222 'export_dependent_settings': [ |
223 'rtc_base_approved', | 223 'rtc_base_approved', |
224 ], | 224 ], |
225 'defines': [ | 225 'defines': [ |
226 'FEATURE_ENABLE_SSL', | 226 'FEATURE_ENABLE_SSL', |
227 'SSL_USE_OPENSSL', | 227 'SSL_USE_OPENSSL', |
228 'HAVE_OPENSSL_SSL_H', | 228 'HAVE_OPENSSL_SSL_H', |
229 'LOGGING=1', | 229 'LOGGING=1', |
230 ], | 230 ], |
231 'sources': [ | 231 'sources': [ |
232 'applefilesystem.mm', | |
233 'arraysize.h', | 232 'arraysize.h', |
234 'asyncfile.cc', | 233 'asyncfile.cc', |
235 'asyncfile.h', | 234 'asyncfile.h', |
236 'asyncinvoker.cc', | 235 'asyncinvoker.cc', |
237 'asyncinvoker.h', | 236 'asyncinvoker.h', |
238 'asyncinvoker-inl.h', | 237 'asyncinvoker-inl.h', |
239 'asyncpacketsocket.cc', | 238 'asyncpacketsocket.cc', |
240 'asyncpacketsocket.h', | 239 'asyncpacketsocket.h', |
241 'asyncresolverinterface.cc', | 240 'asyncresolverinterface.cc', |
242 'asyncresolverinterface.h', | 241 'asyncresolverinterface.h', |
(...skipping 28 matching lines...) Expand all Loading... |
271 'helpers.h', | 270 'helpers.h', |
272 'httpbase.cc', | 271 'httpbase.cc', |
273 'httpbase.h', | 272 'httpbase.h', |
274 'httpclient.cc', | 273 'httpclient.cc', |
275 'httpclient.h', | 274 'httpclient.h', |
276 'httpcommon-inl.h', | 275 'httpcommon-inl.h', |
277 'httpcommon.cc', | 276 'httpcommon.cc', |
278 'httpcommon.h', | 277 'httpcommon.h', |
279 'httprequest.cc', | 278 'httprequest.cc', |
280 'httprequest.h', | 279 'httprequest.h', |
| 280 'iosfilesystem.mm', |
281 'ipaddress.cc', | 281 'ipaddress.cc', |
282 'ipaddress.h', | 282 'ipaddress.h', |
283 'linked_ptr.h', | 283 'linked_ptr.h', |
284 'messagedigest.cc', | 284 'messagedigest.cc', |
285 'messagedigest.h', | 285 'messagedigest.h', |
286 'messagehandler.cc', | 286 'messagehandler.cc', |
287 'messagehandler.h', | 287 'messagehandler.h', |
288 'messagequeue.cc', | 288 'messagequeue.cc', |
289 'messagequeue.h', | 289 'messagequeue.h', |
290 'nethelpers.cc', | 290 'nethelpers.cc', |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 'OTHER_LDFLAGS': [ | 596 'OTHER_LDFLAGS': [ |
597 '-framework Cocoa', | 597 '-framework Cocoa', |
598 '-framework Foundation', | 598 '-framework Foundation', |
599 '-framework IOKit', | 599 '-framework IOKit', |
600 '-framework Security', | 600 '-framework Security', |
601 '-framework SystemConfiguration', | 601 '-framework SystemConfiguration', |
602 ], | 602 ], |
603 }, | 603 }, |
604 }, | 604 }, |
605 }, | 605 }, |
| 606 'conditions': [ |
| 607 ['target_arch=="ia32"', { |
| 608 'all_dependent_settings': { |
| 609 'link_settings': { |
| 610 'xcode_settings': { |
| 611 'OTHER_LDFLAGS': [ |
| 612 '-framework Carbon', |
| 613 ], |
| 614 }, |
| 615 }, |
| 616 }, |
| 617 }], |
| 618 ], |
606 }], | 619 }], |
607 ['OS=="win" and nacl_untrusted_build==0', { | 620 ['OS=="win" and nacl_untrusted_build==0', { |
608 'sources': [ | 621 'sources': [ |
609 'win32.cc', | 622 'win32.cc', |
610 'win32.h', | 623 'win32.h', |
611 'win32filesystem.cc', | 624 'win32filesystem.cc', |
612 'win32filesystem.h', | 625 'win32filesystem.h', |
613 'win32securityerrors.cc', | 626 'win32securityerrors.cc', |
614 'win32window.cc', | 627 'win32window.cc', |
615 'win32window.h', | 628 'win32window.h', |
(...skipping 28 matching lines...) Expand all Loading... |
644 'Debug_Base': { | 657 'Debug_Base': { |
645 'defines': [ | 658 'defines': [ |
646 # Chromium's build/common.gypi defines this for all posix | 659 # Chromium's build/common.gypi defines this for all posix |
647 # _except_ for ios & mac. We want it there as well, e.g. | 660 # _except_ for ios & mac. We want it there as well, e.g. |
648 # because ASSERT and friends trigger off of it. | 661 # because ASSERT and friends trigger off of it. |
649 '_DEBUG', | 662 '_DEBUG', |
650 ], | 663 ], |
651 }, | 664 }, |
652 } | 665 } |
653 }], | 666 }], |
| 667 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
| 668 'defines': [ |
| 669 'CARBON_DEPRECATED=YES', |
| 670 ], |
| 671 }], |
654 ['OS=="linux" or OS=="android"', { | 672 ['OS=="linux" or OS=="android"', { |
655 'sources': [ | 673 'sources': [ |
656 'linux.cc', | 674 'linux.cc', |
657 'linux.h', | 675 'linux.h', |
658 ], | 676 ], |
659 }], | 677 }], |
660 ['build_ssl==1', { | 678 ['build_ssl==1', { |
661 'dependencies': [ | 679 'dependencies': [ |
662 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', | 680 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', |
663 ], | 681 ], |
664 }, { | 682 }, { |
665 'include_dirs': [ | 683 'include_dirs': [ |
666 '<(ssl_root)', | 684 '<(ssl_root)', |
667 ], | 685 ], |
668 }], | 686 }], |
669 ], | 687 ], |
670 }, | 688 }, |
671 { | 689 { |
672 'target_name': 'gtest_prod', | 690 'target_name': 'gtest_prod', |
673 'type': 'static_library', | 691 'type': 'static_library', |
674 'sources': [ | 692 'sources': [ |
675 'gtest_prod_util.h', | 693 'gtest_prod_util.h', |
676 ], | 694 ], |
677 }, | 695 }, |
678 ], | 696 ], |
679 } | 697 } |
OLD | NEW |