| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 "asyncresolverinterface.cc", | 373 "asyncresolverinterface.cc", |
| 374 "asyncresolverinterface.h", | 374 "asyncresolverinterface.h", |
| 375 "asyncsocket.cc", | 375 "asyncsocket.cc", |
| 376 "asyncsocket.h", | 376 "asyncsocket.h", |
| 377 "asynctcpsocket.cc", | 377 "asynctcpsocket.cc", |
| 378 "asynctcpsocket.h", | 378 "asynctcpsocket.h", |
| 379 "asyncudpsocket.cc", | 379 "asyncudpsocket.cc", |
| 380 "asyncudpsocket.h", | 380 "asyncudpsocket.h", |
| 381 "autodetectproxy.cc", | 381 "autodetectproxy.cc", |
| 382 "autodetectproxy.h", | 382 "autodetectproxy.h", |
| 383 "common.cc", | |
| 384 "common.h", | |
| 385 "crc32.cc", | 383 "crc32.cc", |
| 386 "crc32.h", | 384 "crc32.h", |
| 387 "cryptstring.cc", | 385 "cryptstring.cc", |
| 388 "cryptstring.h", | 386 "cryptstring.h", |
| 389 "diskcache.cc", | 387 "diskcache.cc", |
| 390 "diskcache.h", | 388 "diskcache.h", |
| 391 "filerotatingstream.cc", | 389 "filerotatingstream.cc", |
| 392 "filerotatingstream.h", | 390 "filerotatingstream.h", |
| 393 "fileutils.cc", | 391 "fileutils.cc", |
| 394 "fileutils.h", | 392 "fileutils.h", |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 | 915 |
| 918 if (is_android) { | 916 if (is_android) { |
| 919 android_library("base_java") { | 917 android_library("base_java") { |
| 920 java_files = [ | 918 java_files = [ |
| 921 "java/src/org/webrtc/Logging.java", | 919 "java/src/org/webrtc/Logging.java", |
| 922 "java/src/org/webrtc/Size.java", | 920 "java/src/org/webrtc/Size.java", |
| 923 "java/src/org/webrtc/ThreadUtils.java", | 921 "java/src/org/webrtc/ThreadUtils.java", |
| 924 ] | 922 ] |
| 925 } | 923 } |
| 926 } | 924 } |
| OLD | NEW |