| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "buffer.cc", | 110 "buffer.cc", |
| 111 "buffer.h", | 111 "buffer.h", |
| 112 "bufferqueue.cc", | 112 "bufferqueue.cc", |
| 113 "bufferqueue.h", | 113 "bufferqueue.h", |
| 114 "bytebuffer.cc", | 114 "bytebuffer.cc", |
| 115 "bytebuffer.h", | 115 "bytebuffer.h", |
| 116 "byteorder.h", | 116 "byteorder.h", |
| 117 "checks.cc", | 117 "checks.cc", |
| 118 "checks.h", | 118 "checks.h", |
| 119 "constructormagic.h", | 119 "constructormagic.h", |
| 120 "copyonwritebuffer.cc", |
| 121 "copyonwritebuffer.h", |
| 120 "criticalsection.cc", | 122 "criticalsection.cc", |
| 121 "criticalsection.h", | 123 "criticalsection.h", |
| 122 "deprecation.h", | 124 "deprecation.h", |
| 123 "event.cc", | 125 "event.cc", |
| 124 "event.h", | 126 "event.h", |
| 125 "event_tracer.cc", | 127 "event_tracer.cc", |
| 126 "event_tracer.h", | 128 "event_tracer.h", |
| 127 "exp_filter.cc", | 129 "exp_filter.cc", |
| 128 "exp_filter.h", | 130 "exp_filter.h", |
| 129 "md5.cc", | 131 "md5.cc", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 "asynctcpsocket.cc", | 216 "asynctcpsocket.cc", |
| 215 "asynctcpsocket.h", | 217 "asynctcpsocket.h", |
| 216 "asyncudpsocket.cc", | 218 "asyncudpsocket.cc", |
| 217 "asyncudpsocket.h", | 219 "asyncudpsocket.h", |
| 218 "autodetectproxy.cc", | 220 "autodetectproxy.cc", |
| 219 "autodetectproxy.h", | 221 "autodetectproxy.h", |
| 220 "base64.cc", | 222 "base64.cc", |
| 221 "base64.h", | 223 "base64.h", |
| 222 "common.cc", | 224 "common.cc", |
| 223 "common.h", | 225 "common.h", |
| 224 "copyonwritebuffer.cc", | |
| 225 "copyonwritebuffer.h", | |
| 226 "crc32.cc", | 226 "crc32.cc", |
| 227 "crc32.h", | 227 "crc32.h", |
| 228 "cryptstring.cc", | 228 "cryptstring.cc", |
| 229 "cryptstring.h", | 229 "cryptstring.h", |
| 230 "diskcache.cc", | 230 "diskcache.cc", |
| 231 "diskcache.h", | 231 "diskcache.h", |
| 232 "filerotatingstream.cc", | 232 "filerotatingstream.cc", |
| 233 "filerotatingstream.h", | 233 "filerotatingstream.h", |
| 234 "fileutils.cc", | 234 "fileutils.cc", |
| 235 "fileutils.h", | 235 "fileutils.h", |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 "objc/RTCUIApplication.mm", | 652 "objc/RTCUIApplication.mm", |
| 653 ] | 653 ] |
| 654 } | 654 } |
| 655 } | 655 } |
| 656 | 656 |
| 657 source_set("gtest_prod") { | 657 source_set("gtest_prod") { |
| 658 sources = [ | 658 sources = [ |
| 659 "gtest_prod_util.h", | 659 "gtest_prod_util.h", |
| 660 ] | 660 ] |
| 661 } | 661 } |
| OLD | NEW |