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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 "asyncresolverinterface.cc", | 386 "asyncresolverinterface.cc", |
387 "asyncresolverinterface.h", | 387 "asyncresolverinterface.h", |
388 "asyncsocket.cc", | 388 "asyncsocket.cc", |
389 "asyncsocket.h", | 389 "asyncsocket.h", |
390 "asynctcpsocket.cc", | 390 "asynctcpsocket.cc", |
391 "asynctcpsocket.h", | 391 "asynctcpsocket.h", |
392 "asyncudpsocket.cc", | 392 "asyncudpsocket.cc", |
393 "asyncudpsocket.h", | 393 "asyncudpsocket.h", |
394 "crc32.cc", | 394 "crc32.cc", |
395 "crc32.h", | 395 "crc32.h", |
| 396 "cryptstring.cc", |
| 397 "cryptstring.h", |
396 "filerotatingstream.cc", | 398 "filerotatingstream.cc", |
397 "filerotatingstream.h", | 399 "filerotatingstream.h", |
398 "fileutils.cc", | 400 "fileutils.cc", |
399 "fileutils.h", | 401 "fileutils.h", |
400 "gunit_prod.h", | 402 "gunit_prod.h", |
401 "helpers.cc", | 403 "helpers.cc", |
402 "helpers.h", | 404 "helpers.h", |
403 "ipaddress.cc", | 405 "ipaddress.cc", |
404 "ipaddress.h", | 406 "ipaddress.h", |
405 "messagedigest.cc", | 407 "messagedigest.cc", |
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
896 | 898 |
897 if (is_android) { | 899 if (is_android) { |
898 android_library("base_java") { | 900 android_library("base_java") { |
899 java_files = [ | 901 java_files = [ |
900 "java/src/org/webrtc/Logging.java", | 902 "java/src/org/webrtc/Logging.java", |
901 "java/src/org/webrtc/Size.java", | 903 "java/src/org/webrtc/Size.java", |
902 "java/src/org/webrtc/ThreadUtils.java", | 904 "java/src/org/webrtc/ThreadUtils.java", |
903 ] | 905 ] |
904 } | 906 } |
905 } | 907 } |
OLD | NEW |