| 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 import("//build/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 ] | 590 ] |
| 591 } | 591 } |
| 592 | 592 |
| 593 if (is_nacl) { | 593 if (is_nacl) { |
| 594 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 594 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 595 defines += [ "timezone=_timezone" ] | 595 defines += [ "timezone=_timezone" ] |
| 596 sources -= [ "ifaddrs_converter.cc" ] | 596 sources -= [ "ifaddrs_converter.cc" ] |
| 597 } | 597 } |
| 598 } | 598 } |
| 599 | 599 |
| 600 if (is_ios) { | |
| 601 source_set("rtc_base_objc") { | |
| 602 deps = [ | |
| 603 ":rtc_base", | |
| 604 ] | |
| 605 cflags = [ "-fobjc-arc" ] | |
| 606 configs += [ "..:common_config" ] | |
| 607 public_configs = [ "..:common_inherited_config" ] | |
| 608 | |
| 609 sources = [ | |
| 610 "objc/NSString+StdString.h", | |
| 611 "objc/NSString+StdString.mm", | |
| 612 "objc/RTCCameraPreviewView.h", | |
| 613 "objc/RTCCameraPreviewView.m", | |
| 614 "objc/RTCDispatcher.h", | |
| 615 "objc/RTCDispatcher.m", | |
| 616 "objc/RTCFieldTrials.h", | |
| 617 "objc/RTCFieldTrials.mm", | |
| 618 "objc/RTCLogging.h", | |
| 619 "objc/RTCLogging.mm", | |
| 620 "objc/RTCMacros.h", | |
| 621 "objc/RTCSSLAdapter.h", | |
| 622 "objc/RTCSSLAdapter.mm", | |
| 623 "objc/RTCTracing.h", | |
| 624 "objc/RTCTracing.mm", | |
| 625 "objc/RTCUIApplication.h", | |
| 626 "objc/RTCUIApplication.mm", | |
| 627 ] | |
| 628 | |
| 629 if (!build_with_chromium) { | |
| 630 sources += [ | |
| 631 "objc/RTCFileLogger.h", | |
| 632 "objc/RTCFileLogger.mm", | |
| 633 ] | |
| 634 } | |
| 635 } | |
| 636 } | |
| 637 | |
| 638 source_set("gtest_prod") { | 600 source_set("gtest_prod") { |
| 639 sources = [ | 601 sources = [ |
| 640 "gtest_prod_util.h", | 602 "gtest_prod_util.h", |
| 641 ] | 603 ] |
| 642 } | 604 } |
| OLD | NEW |