| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 rtc_static_library("rtc_base") { | 364 rtc_static_library("rtc_base") { |
| 365 cflags = [] | 365 cflags = [] |
| 366 cflags_cc = [] | 366 cflags_cc = [] |
| 367 libs = [] | 367 libs = [] |
| 368 defines = [] | 368 defines = [] |
| 369 deps = [ | 369 deps = [ |
| 370 "..:webrtc_common", | 370 "..:webrtc_common", |
| 371 ] | 371 ] |
| 372 public_deps = [ | 372 public_deps = [ |
| 373 ":rtc_base_approved", | 373 ":rtc_base_approved", |
| 374 ":rtc_task_runner", | |
| 375 ] | 374 ] |
| 376 public_configs = [] | 375 public_configs = [] |
| 377 | 376 |
| 378 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] | 377 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] |
| 379 | 378 |
| 380 sources = [ | 379 sources = [ |
| 381 "applefilesystem.mm", | 380 "applefilesystem.mm", |
| 382 "asyncinvoker-inl.h", | 381 "asyncinvoker-inl.h", |
| 383 "asyncinvoker.cc", | 382 "asyncinvoker.cc", |
| 384 "asyncinvoker.h", | 383 "asyncinvoker.h", |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 } | 882 } |
| 884 if (is_posix) { | 883 if (is_posix) { |
| 885 sources += [ | 884 sources += [ |
| 886 "ssladapter_unittest.cc", | 885 "ssladapter_unittest.cc", |
| 887 "sslidentity_unittest.cc", | 886 "sslidentity_unittest.cc", |
| 888 "sslstreamadapter_unittest.cc", | 887 "sslstreamadapter_unittest.cc", |
| 889 ] | 888 ] |
| 890 } | 889 } |
| 891 deps = [ | 890 deps = [ |
| 892 ":rtc_base_tests_main", | 891 ":rtc_base_tests_main", |
| 892 ":rtc_task_runner", |
| 893 ] | 893 ] |
| 894 public_deps = [ | 894 public_deps = [ |
| 895 ":rtc_base", | 895 ":rtc_base", |
| 896 ] | 896 ] |
| 897 configs += [ ":rtc_base_unittests_config" ] | 897 configs += [ ":rtc_base_unittests_config" ] |
| 898 if (!build_with_chromium && is_clang) { | 898 if (!build_with_chromium && is_clang) { |
| 899 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 899 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 900 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 900 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 901 } | 901 } |
| 902 } | 902 } |
| 903 } | 903 } |
| 904 | 904 |
| 905 if (is_android) { | 905 if (is_android) { |
| 906 android_library("base_java") { | 906 android_library("base_java") { |
| 907 java_files = [ | 907 java_files = [ |
| 908 "java/src/org/webrtc/Logging.java", | 908 "java/src/org/webrtc/Logging.java", |
| 909 "java/src/org/webrtc/Size.java", | 909 "java/src/org/webrtc/Size.java", |
| 910 "java/src/org/webrtc/ThreadUtils.java", | 910 "java/src/org/webrtc/ThreadUtils.java", |
| 911 ] | 911 ] |
| 912 } | 912 } |
| 913 } | 913 } |
| OLD | NEW |