| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 } | 72 } |
| 73 | 73 |
| 74 if (!rtc_build_ssl) { | 74 if (!rtc_build_ssl) { |
| 75 config("external_ssl_library") { | 75 config("external_ssl_library") { |
| 76 assert(rtc_ssl_root != "", | 76 assert(rtc_ssl_root != "", |
| 77 "You must specify rtc_ssl_root when rtc_build_ssl==0.") | 77 "You must specify rtc_ssl_root when rtc_build_ssl==0.") |
| 78 include_dirs = [ rtc_ssl_root ] | 78 include_dirs = [ rtc_ssl_root ] |
| 79 } | 79 } |
| 80 } | 80 } |
| 81 | 81 |
| 82 source_set("protobuf_utils") { | |
| 83 sources = [ | |
| 84 "protobuf_utils.h", | |
| 85 ] | |
| 86 if (rtc_enable_protobuf) { | |
| 87 public_deps = [ | |
| 88 "//third_party/protobuf:protobuf_lite", | |
| 89 ] | |
| 90 } | |
| 91 } | |
| 92 | |
| 93 # The subset of rtc_base approved for use outside of libjingle. | 82 # The subset of rtc_base approved for use outside of libjingle. |
| 94 rtc_static_library("rtc_base_approved") { | 83 rtc_static_library("rtc_base_approved") { |
| 95 defines = [] | 84 defines = [] |
| 96 libs = [] | 85 libs = [] |
| 97 deps = [] | 86 deps = [] |
| 98 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] | 87 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] |
| 99 | 88 |
| 100 sources = [ | 89 sources = [ |
| 101 "array_view.h", | 90 "array_view.h", |
| 102 "arraysize.h", | 91 "arraysize.h", |
| (...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 | 894 |
| 906 if (is_android) { | 895 if (is_android) { |
| 907 android_library("base_java") { | 896 android_library("base_java") { |
| 908 java_files = [ | 897 java_files = [ |
| 909 "java/src/org/webrtc/Logging.java", | 898 "java/src/org/webrtc/Logging.java", |
| 910 "java/src/org/webrtc/Size.java", | 899 "java/src/org/webrtc/Size.java", |
| 911 "java/src/org/webrtc/ThreadUtils.java", | 900 "java/src/org/webrtc/ThreadUtils.java", |
| 912 ] | 901 ] |
| 913 } | 902 } |
| 914 } | 903 } |
| OLD | NEW |