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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 } | 80 } |
81 | 81 |
82 # The subset of rtc_base approved for use outside of libjingle. | 82 # The subset of rtc_base approved for use outside of libjingle. |
83 rtc_static_library("rtc_base_approved") { | 83 rtc_static_library("rtc_base_approved") { |
84 defines = [] | 84 defines = [] |
85 libs = [] | 85 libs = [] |
86 deps = [] | 86 deps = [] |
87 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] | 87 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] |
88 | 88 |
89 sources = [ | 89 sources = [ |
| 90 "annotations.h", |
90 "array_view.h", | 91 "array_view.h", |
91 "arraysize.h", | 92 "arraysize.h", |
92 "atomicops.h", | 93 "atomicops.h", |
93 "base64.cc", | 94 "base64.cc", |
94 "base64.h", | 95 "base64.h", |
95 "basictypes.h", | 96 "basictypes.h", |
96 "bind.h", | 97 "bind.h", |
97 "bitbuffer.cc", | 98 "bitbuffer.cc", |
98 "bitbuffer.h", | 99 "bitbuffer.h", |
99 "buffer.h", | 100 "buffer.h", |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 | 882 |
882 if (is_android) { | 883 if (is_android) { |
883 android_library("base_java") { | 884 android_library("base_java") { |
884 java_files = [ | 885 java_files = [ |
885 "java/src/org/webrtc/Logging.java", | 886 "java/src/org/webrtc/Logging.java", |
886 "java/src/org/webrtc/Size.java", | 887 "java/src/org/webrtc/Size.java", |
887 "java/src/org/webrtc/ThreadUtils.java", | 888 "java/src/org/webrtc/ThreadUtils.java", |
888 ] | 889 ] |
889 } | 890 } |
890 } | 891 } |
OLD | NEW |