| 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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 if (is_linux || is_android) { | 605 if (is_linux || is_android) { |
| 606 sources += [ | 606 sources += [ |
| 607 "linux.cc", | 607 "linux.cc", |
| 608 "linux.h", | 608 "linux.h", |
| 609 ] | 609 ] |
| 610 } | 610 } |
| 611 | 611 |
| 612 if (is_nacl) { | 612 if (is_nacl) { |
| 613 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 613 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 614 defines += [ "timezone=_timezone" ] | 614 defines += [ "timezone=_timezone" ] |
| 615 sources -= [ "ifaddrs_converter.cc" ] |
| 615 } | 616 } |
| 616 } | 617 } |
| 617 | 618 |
| 618 if (is_ios) { | 619 if (is_ios) { |
| 619 source_set("rtc_base_objc") { | 620 source_set("rtc_base_objc") { |
| 620 deps = [ | 621 deps = [ |
| 621 ":rtc_base", | 622 ":rtc_base", |
| 622 ] | 623 ] |
| 623 cflags = [ "-fobjc-arc" ] | 624 cflags = [ "-fobjc-arc" ] |
| 624 configs += [ "..:common_config" ] | 625 configs += [ "..:common_config" ] |
| 625 public_configs = [ "..:common_inherited_config" ] | 626 public_configs = [ "..:common_inherited_config" ] |
| 626 | 627 |
| 627 sources = [ | 628 sources = [ |
| 628 "objc/NSString+StdString.h", | 629 "objc/NSString+StdString.h", |
| 629 "objc/NSString+StdString.mm", | 630 "objc/NSString+StdString.mm", |
| 630 "objc/RTCCameraPreviewView.h", | 631 "objc/RTCCameraPreviewView.h", |
| 631 "objc/RTCCameraPreviewView.m", | 632 "objc/RTCCameraPreviewView.m", |
| 632 "objc/RTCDispatcher.h", | 633 "objc/RTCDispatcher.h", |
| 633 "objc/RTCDispatcher.m", | 634 "objc/RTCDispatcher.m", |
| 634 "objc/RTCLogging.h", | 635 "objc/RTCLogging.h", |
| 635 "objc/RTCLogging.mm", | 636 "objc/RTCLogging.mm", |
| 636 ] | 637 ] |
| 637 } | 638 } |
| 638 } | 639 } |
| OLD | NEW |