Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2915253002: Delete SignalThread class. (Closed)
Patch Set: Implement Destroy logic, using new method MessageQueue::PostFunctor. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/base/messagequeue.h » ('j') | webrtc/base/messagequeue.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 defines += [ "WEBRTC_EXTERNAL_JSON" ] 391 defines += [ "WEBRTC_EXTERNAL_JSON" ]
392 } 392 }
393 } 393 }
394 394
395 rtc_static_library("rtc_base") { 395 rtc_static_library("rtc_base") {
396 cflags = [] 396 cflags = []
397 cflags_cc = [] 397 cflags_cc = []
398 libs = [] 398 libs = []
399 defines = [] 399 defines = []
400 deps = [ 400 deps = [
401 ":rtc_task_queue",
401 "..:webrtc_common", 402 "..:webrtc_common",
402 ] 403 ]
403 public_deps = [ 404 public_deps = [
404 ":rtc_base_approved", 405 ":rtc_base_approved",
405 ] 406 ]
406 public_configs = [] 407 public_configs = []
407 408
408 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] 409 all_dependent_configs = [ ":rtc_base_all_dependent_config" ]
409 410
410 sources = [ 411 sources = [
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 "physicalsocketserver.cc", 467 "physicalsocketserver.cc",
467 "physicalsocketserver.h", 468 "physicalsocketserver.h",
468 "proxyinfo.cc", 469 "proxyinfo.cc",
469 "proxyinfo.h", 470 "proxyinfo.h",
470 "ratelimiter.cc", 471 "ratelimiter.cc",
471 "ratelimiter.h", 472 "ratelimiter.h",
472 "rtccertificate.cc", 473 "rtccertificate.cc",
473 "rtccertificate.h", 474 "rtccertificate.h",
474 "rtccertificategenerator.cc", 475 "rtccertificategenerator.cc",
475 "rtccertificategenerator.h", 476 "rtccertificategenerator.h",
476 "signalthread.cc",
477 "signalthread.h",
478 "sigslot.cc", 477 "sigslot.cc",
479 "sigslot.h", 478 "sigslot.h",
480 "sigslotrepeater.h", 479 "sigslotrepeater.h",
481 "socket.h", 480 "socket.h",
482 "socketadapters.cc", 481 "socketadapters.cc",
483 "socketadapters.h", 482 "socketadapters.h",
484 "socketaddress.cc", 483 "socketaddress.cc",
485 "socketaddress.h", 484 "socketaddress.h",
486 "socketaddresspair.cc", 485 "socketaddresspair.cc",
487 "socketaddresspair.h", 486 "socketaddresspair.h",
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 "nat_unittest.cc", 929 "nat_unittest.cc",
931 "network_unittest.cc", 930 "network_unittest.cc",
932 "optionsfile_unittest.cc", 931 "optionsfile_unittest.cc",
933 "proxy_unittest.cc", 932 "proxy_unittest.cc",
934 "ptr_util_unittest.cc", 933 "ptr_util_unittest.cc",
935 "ratelimiter_unittest.cc", 934 "ratelimiter_unittest.cc",
936 "rollingaccumulator_unittest.cc", 935 "rollingaccumulator_unittest.cc",
937 "rtccertificate_unittest.cc", 936 "rtccertificate_unittest.cc",
938 "rtccertificategenerator_unittest.cc", 937 "rtccertificategenerator_unittest.cc",
939 "sha1digest_unittest.cc", 938 "sha1digest_unittest.cc",
940 "signalthread_unittest.cc",
941 "sigslot_unittest.cc", 939 "sigslot_unittest.cc",
942 "sigslottester_unittest.cc", 940 "sigslottester_unittest.cc",
943 "stream_unittest.cc", 941 "stream_unittest.cc",
944 "testclient_unittest.cc", 942 "testclient_unittest.cc",
945 "thread_unittest.cc", 943 "thread_unittest.cc",
946 ] 944 ]
947 if (is_win) { 945 if (is_win) {
948 sources += [ 946 sources += [
949 "win32_unittest.cc", 947 "win32_unittest.cc",
950 "win32window_unittest.cc", 948 "win32window_unittest.cc",
(...skipping 28 matching lines...) Expand all
979 if (is_android) { 977 if (is_android) {
980 android_library("base_java") { 978 android_library("base_java") {
981 java_files = [ 979 java_files = [
982 "java/src/org/webrtc/ContextUtils.java", 980 "java/src/org/webrtc/ContextUtils.java",
983 "java/src/org/webrtc/Logging.java", 981 "java/src/org/webrtc/Logging.java",
984 "java/src/org/webrtc/Size.java", 982 "java/src/org/webrtc/Size.java",
985 "java/src/org/webrtc/ThreadUtils.java", 983 "java/src/org/webrtc/ThreadUtils.java",
986 ] 984 ]
987 } 985 }
988 } 986 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/messagequeue.h » ('j') | webrtc/base/messagequeue.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698