| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 sources = [ | 83 sources = [ |
| 84 "protobuf_utils.h", | 84 "protobuf_utils.h", |
| 85 ] | 85 ] |
| 86 if (rtc_enable_protobuf) { | 86 if (rtc_enable_protobuf) { |
| 87 public_deps = [ | 87 public_deps = [ |
| 88 "//third_party/protobuf:protobuf_lite", | 88 "//third_party/protobuf:protobuf_lite", |
| 89 ] | 89 ] |
| 90 } | 90 } |
| 91 } | 91 } |
| 92 | 92 |
| 93 source_set("compile_assert_c") { |
| 94 sources = [ |
| 95 "compile_assert_c.h", |
| 96 ] |
| 97 } |
| 98 |
| 93 # The subset of rtc_base approved for use outside of libjingle. | 99 # The subset of rtc_base approved for use outside of libjingle. |
| 94 rtc_static_library("rtc_base_approved") { | 100 rtc_static_library("rtc_base_approved") { |
| 95 # TODO(kjellander): Remove (bugs.webrtc.org/7480) | 101 # TODO(kjellander): Remove (bugs.webrtc.org/7480) |
| 96 # Enabling GN check triggers a cyclic dependency caused by rate_limiter.cc: | 102 # Enabling GN check triggers a cyclic dependency caused by rate_limiter.cc: |
| 97 # :rtc_base_approved -> //webrtc/system_wrappers -> :rtc_base_approved | 103 # :rtc_base_approved -> //webrtc/system_wrappers -> :rtc_base_approved |
| 98 check_includes = false | 104 check_includes = false |
| 99 defines = [] | 105 defines = [] |
| 100 libs = [] | 106 libs = [] |
| 101 deps = [] | 107 deps = [] |
| 102 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] | 108 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 972 | 978 |
| 973 if (is_android) { | 979 if (is_android) { |
| 974 android_library("base_java") { | 980 android_library("base_java") { |
| 975 java_files = [ | 981 java_files = [ |
| 976 "java/src/org/webrtc/Logging.java", | 982 "java/src/org/webrtc/Logging.java", |
| 977 "java/src/org/webrtc/Size.java", | 983 "java/src/org/webrtc/Size.java", |
| 978 "java/src/org/webrtc/ThreadUtils.java", | 984 "java/src/org/webrtc/ThreadUtils.java", |
| 979 ] | 985 ] |
| 980 } | 986 } |
| 981 } | 987 } |
| OLD | NEW |