| 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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 "ratelimiter.cc", | 476 "ratelimiter.cc", |
| 477 "ratelimiter.h", | 477 "ratelimiter.h", |
| 478 "rtccertificate.cc", | 478 "rtccertificate.cc", |
| 479 "rtccertificate.h", | 479 "rtccertificate.h", |
| 480 "rtccertificategenerator.cc", | 480 "rtccertificategenerator.cc", |
| 481 "rtccertificategenerator.h", | 481 "rtccertificategenerator.h", |
| 482 "signalthread.cc", | 482 "signalthread.cc", |
| 483 "signalthread.h", | 483 "signalthread.h", |
| 484 "sigslot.cc", | 484 "sigslot.cc", |
| 485 "sigslot.h", | 485 "sigslot.h", |
| 486 "sigslotrepeater.h", | |
| 487 "socket.h", | 486 "socket.h", |
| 488 "socketadapters.cc", | 487 "socketadapters.cc", |
| 489 "socketadapters.h", | 488 "socketadapters.h", |
| 490 "socketaddress.cc", | 489 "socketaddress.cc", |
| 491 "socketaddress.h", | 490 "socketaddress.h", |
| 492 "socketaddresspair.cc", | 491 "socketaddresspair.cc", |
| 493 "socketaddresspair.h", | 492 "socketaddresspair.h", |
| 494 "socketfactory.h", | 493 "socketfactory.h", |
| 495 "socketserver.h", | 494 "socketserver.h", |
| 496 "socketstream.cc", | 495 "socketstream.cc", |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 if (is_android) { | 1024 if (is_android) { |
| 1026 android_library("base_java") { | 1025 android_library("base_java") { |
| 1027 java_files = [ | 1026 java_files = [ |
| 1028 "java/src/org/webrtc/ContextUtils.java", | 1027 "java/src/org/webrtc/ContextUtils.java", |
| 1029 "java/src/org/webrtc/Logging.java", | 1028 "java/src/org/webrtc/Logging.java", |
| 1030 "java/src/org/webrtc/Size.java", | 1029 "java/src/org/webrtc/Size.java", |
| 1031 "java/src/org/webrtc/ThreadUtils.java", | 1030 "java/src/org/webrtc/ThreadUtils.java", |
| 1032 ] | 1031 ] |
| 1033 } | 1032 } |
| 1034 } | 1033 } |
| OLD | NEW |