Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2996643002: BWE allocation strategy
Patch Set: BWE allocation strategy Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 sources = [ 100 sources = [
101 "array_view.h", 101 "array_view.h",
102 "arraysize.h", 102 "arraysize.h",
103 "atomicops.h", 103 "atomicops.h",
104 "base64.cc", 104 "base64.cc",
105 "base64.h", 105 "base64.h",
106 "basictypes.h", 106 "basictypes.h",
107 "bind.h", 107 "bind.h",
108 "bitbuffer.cc", 108 "bitbuffer.cc",
109 "bitbuffer.h", 109 "bitbuffer.h",
110 "bitrateallocationstrategy.cc",
111 "bitrateallocationstrategy.h",
110 "buffer.h", 112 "buffer.h",
111 "bufferqueue.cc", 113 "bufferqueue.cc",
112 "bufferqueue.h", 114 "bufferqueue.h",
113 "bytebuffer.cc", 115 "bytebuffer.cc",
114 "bytebuffer.h", 116 "bytebuffer.h",
115 "byteorder.h", 117 "byteorder.h",
116 "checks.cc", 118 "checks.cc",
117 "checks.h", 119 "checks.h",
118 "constructormagic.h", 120 "constructormagic.h",
119 "copyonwritebuffer.cc", 121 "copyonwritebuffer.cc",
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 if (is_android) { 1026 if (is_android) {
1025 android_library("base_java") { 1027 android_library("base_java") {
1026 java_files = [ 1028 java_files = [
1027 "java/src/org/webrtc/ContextUtils.java", 1029 "java/src/org/webrtc/ContextUtils.java",
1028 "java/src/org/webrtc/Logging.java", 1030 "java/src/org/webrtc/Logging.java",
1029 "java/src/org/webrtc/Size.java", 1031 "java/src/org/webrtc/Size.java",
1030 "java/src/org/webrtc/ThreadUtils.java", 1032 "java/src/org/webrtc/ThreadUtils.java",
1031 ] 1033 ]
1032 } 1034 }
1033 } 1035 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698