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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 "flags.cc", | 130 "flags.cc", |
131 "flags.h", | 131 "flags.h", |
132 "format_macros.h", | 132 "format_macros.h", |
133 "function_view.h", | 133 "function_view.h", |
134 "ignore_wundef.h", | 134 "ignore_wundef.h", |
135 "location.cc", | 135 "location.cc", |
136 "location.h", | 136 "location.h", |
137 "mod_ops.h", | 137 "mod_ops.h", |
138 "moving_max_counter.h", | 138 "moving_max_counter.h", |
139 "onetimeevent.h", | 139 "onetimeevent.h", |
140 "optional.cc", | |
141 "optional.h", | |
142 "pathutils.cc", | 140 "pathutils.cc", |
143 "pathutils.h", | 141 "pathutils.h", |
144 "platform_file.cc", | 142 "platform_file.cc", |
145 "platform_file.h", | 143 "platform_file.h", |
146 "platform_thread.cc", | 144 "platform_thread.cc", |
147 "platform_thread.h", | 145 "platform_thread.h", |
148 "platform_thread_types.h", | 146 "platform_thread_types.h", |
149 "ptr_util.h", | 147 "ptr_util.h", |
150 "race_checker.cc", | 148 "race_checker.cc", |
151 "race_checker.h", | 149 "race_checker.h", |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 } | 427 } |
430 } | 428 } |
431 | 429 |
432 rtc_static_library("rtc_base") { | 430 rtc_static_library("rtc_base") { |
433 cflags = [] | 431 cflags = [] |
434 cflags_cc = [] | 432 cflags_cc = [] |
435 libs = [] | 433 libs = [] |
436 defines = [] | 434 defines = [] |
437 deps = [ | 435 deps = [ |
438 "..:webrtc_common", | 436 "..:webrtc_common", |
| 437 "../api:optional", |
439 ] | 438 ] |
440 public_deps = [ | 439 public_deps = [ |
441 ":rtc_base_approved", | 440 ":rtc_base_approved", |
442 ] | 441 ] |
443 public_configs = [] | 442 public_configs = [] |
444 | 443 |
445 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] | 444 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] |
446 | 445 |
447 sources = [ | 446 sources = [ |
448 "asyncinvoker-inl.h", | 447 "asyncinvoker-inl.h", |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 "criticalsection_unittest.cc", | 847 "criticalsection_unittest.cc", |
849 "event_tracer_unittest.cc", | 848 "event_tracer_unittest.cc", |
850 "event_unittest.cc", | 849 "event_unittest.cc", |
851 "file_unittest.cc", | 850 "file_unittest.cc", |
852 "function_view_unittest.cc", | 851 "function_view_unittest.cc", |
853 "logging_unittest.cc", | 852 "logging_unittest.cc", |
854 "md5digest_unittest.cc", | 853 "md5digest_unittest.cc", |
855 "mod_ops_unittest.cc", | 854 "mod_ops_unittest.cc", |
856 "moving_max_counter_unittest.cc", | 855 "moving_max_counter_unittest.cc", |
857 "onetimeevent_unittest.cc", | 856 "onetimeevent_unittest.cc", |
858 "optional_unittest.cc", | |
859 "pathutils_unittest.cc", | 857 "pathutils_unittest.cc", |
860 "platform_thread_unittest.cc", | 858 "platform_thread_unittest.cc", |
861 "random_unittest.cc", | 859 "random_unittest.cc", |
862 "rate_limiter_unittest.cc", | 860 "rate_limiter_unittest.cc", |
863 "rate_statistics_unittest.cc", | 861 "rate_statistics_unittest.cc", |
864 "ratetracker_unittest.cc", | 862 "ratetracker_unittest.cc", |
865 "refcountedobject_unittest.cc", | 863 "refcountedobject_unittest.cc", |
866 "safe_compare_unittest.cc", | 864 "safe_compare_unittest.cc", |
867 "safe_minmax_unittest.cc", | 865 "safe_minmax_unittest.cc", |
868 "string_to_number_unittest.cc", | 866 "string_to_number_unittest.cc", |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1040 sources += [ | 1038 sources += [ |
1041 "openssladapter_unittest.cc", | 1039 "openssladapter_unittest.cc", |
1042 "ssladapter_unittest.cc", | 1040 "ssladapter_unittest.cc", |
1043 "sslidentity_unittest.cc", | 1041 "sslidentity_unittest.cc", |
1044 "sslstreamadapter_unittest.cc", | 1042 "sslstreamadapter_unittest.cc", |
1045 ] | 1043 ] |
1046 } | 1044 } |
1047 deps = [ | 1045 deps = [ |
1048 ":rtc_base_tests_main", | 1046 ":rtc_base_tests_main", |
1049 ":rtc_base_tests_utils", | 1047 ":rtc_base_tests_utils", |
| 1048 "../api:optional", |
1050 "../test:test_support", | 1049 "../test:test_support", |
1051 ] | 1050 ] |
1052 public_deps = [ | 1051 public_deps = [ |
1053 ":rtc_base", | 1052 ":rtc_base", |
1054 ] | 1053 ] |
1055 configs += [ ":rtc_base_unittests_config" ] | 1054 configs += [ ":rtc_base_unittests_config" ] |
1056 if (!build_with_chromium && is_clang) { | 1055 if (!build_with_chromium && is_clang) { |
1057 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1056 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
1058 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1057 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1059 } | 1058 } |
(...skipping 14 matching lines...) Expand all Loading... |
1074 "java/src/org/webrtc/ContextUtils.java", | 1073 "java/src/org/webrtc/ContextUtils.java", |
1075 "java/src/org/webrtc/Logging.java", | 1074 "java/src/org/webrtc/Logging.java", |
1076 "java/src/org/webrtc/Size.java", | 1075 "java/src/org/webrtc/Size.java", |
1077 "java/src/org/webrtc/ThreadUtils.java", | 1076 "java/src/org/webrtc/ThreadUtils.java", |
1078 ] | 1077 ] |
1079 | 1078 |
1080 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 1079 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
1081 no_build_hooks = true | 1080 no_build_hooks = true |
1082 } | 1081 } |
1083 } | 1082 } |
OLD | NEW |