| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 # TODO(kjellander): Remove (bugs.webrtc.org/7480) | 99 # TODO(kjellander): Remove (bugs.webrtc.org/7480) |
| 100 # Enabling GN check triggers a cyclic dependency caused by rate_limiter.cc: | 100 # Enabling GN check triggers a cyclic dependency caused by rate_limiter.cc: |
| 101 # :rtc_base_approved -> ../system_wrappers -> :rtc_base_approved | 101 # :rtc_base_approved -> ../system_wrappers -> :rtc_base_approved |
| 102 check_includes = false | 102 check_includes = false |
| 103 defines = [] | 103 defines = [] |
| 104 libs = [] | 104 libs = [] |
| 105 deps = [] | 105 deps = [] |
| 106 | 106 |
| 107 sources = [ | 107 sources = [ |
| 108 "array_view.h", | |
| 109 "arraysize.h", | 108 "arraysize.h", |
| 110 "atomicops.h", | 109 "atomicops.h", |
| 111 "base64.cc", | 110 "base64.cc", |
| 112 "base64.h", | 111 "base64.h", |
| 113 "basictypes.h", | 112 "basictypes.h", |
| 114 "bind.h", | 113 "bind.h", |
| 115 "bitbuffer.cc", | 114 "bitbuffer.cc", |
| 116 "bitbuffer.h", | 115 "bitbuffer.h", |
| 117 "buffer.h", | 116 "buffer.h", |
| 118 "bufferqueue.cc", | 117 "bufferqueue.cc", |
| (...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 "java/src/org/webrtc/ContextUtils.java", | 1123 "java/src/org/webrtc/ContextUtils.java", |
| 1125 "java/src/org/webrtc/Logging.java", | 1124 "java/src/org/webrtc/Logging.java", |
| 1126 "java/src/org/webrtc/Size.java", | 1125 "java/src/org/webrtc/Size.java", |
| 1127 "java/src/org/webrtc/ThreadUtils.java", | 1126 "java/src/org/webrtc/ThreadUtils.java", |
| 1128 ] | 1127 ] |
| 1129 | 1128 |
| 1130 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 1129 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
| 1131 no_build_hooks = true | 1130 no_build_hooks = true |
| 1132 } | 1131 } |
| 1133 } | 1132 } |
| OLD | NEW |