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

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

Issue 2915253002: Delete SignalThread class. (Closed)
Patch Set: Another TODO on moving to QueuedTask. 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
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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 defines += [ "WEBRTC_EXTERNAL_JSON" ] 397 defines += [ "WEBRTC_EXTERNAL_JSON" ]
398 } 398 }
399 } 399 }
400 400
401 rtc_static_library("rtc_base") { 401 rtc_static_library("rtc_base") {
402 cflags = [] 402 cflags = []
403 cflags_cc = [] 403 cflags_cc = []
404 libs = [] 404 libs = []
405 defines = [] 405 defines = []
406 deps = [ 406 deps = [
407 ":rtc_task_queue",
407 "..:webrtc_common", 408 "..:webrtc_common",
408 ] 409 ]
409 public_deps = [ 410 public_deps = [
410 ":rtc_base_approved", 411 ":rtc_base_approved",
411 ] 412 ]
412 public_configs = [] 413 public_configs = []
413 414
414 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] 415 all_dependent_configs = [ ":rtc_base_all_dependent_config" ]
415 416
416 sources = [ 417 sources = [
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 "physicalsocketserver.cc", 473 "physicalsocketserver.cc",
473 "physicalsocketserver.h", 474 "physicalsocketserver.h",
474 "proxyinfo.cc", 475 "proxyinfo.cc",
475 "proxyinfo.h", 476 "proxyinfo.h",
476 "ratelimiter.cc", 477 "ratelimiter.cc",
477 "ratelimiter.h", 478 "ratelimiter.h",
478 "rtccertificate.cc", 479 "rtccertificate.cc",
479 "rtccertificate.h", 480 "rtccertificate.h",
480 "rtccertificategenerator.cc", 481 "rtccertificategenerator.cc",
481 "rtccertificategenerator.h", 482 "rtccertificategenerator.h",
482 "signalthread.cc",
483 "signalthread.h",
484 "sigslot.cc", 483 "sigslot.cc",
485 "sigslot.h", 484 "sigslot.h",
486 "socket.h", 485 "socket.h",
487 "socketadapters.cc", 486 "socketadapters.cc",
488 "socketadapters.h", 487 "socketadapters.h",
489 "socketaddress.cc", 488 "socketaddress.cc",
490 "socketaddress.h", 489 "socketaddress.h",
491 "socketaddresspair.cc", 490 "socketaddresspair.cc",
492 "socketaddresspair.h", 491 "socketaddresspair.h",
493 "socketfactory.h", 492 "socketfactory.h",
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 "nat_unittest.cc", 981 "nat_unittest.cc",
983 "network_unittest.cc", 982 "network_unittest.cc",
984 "optionsfile_unittest.cc", 983 "optionsfile_unittest.cc",
985 "proxy_unittest.cc", 984 "proxy_unittest.cc",
986 "ptr_util_unittest.cc", 985 "ptr_util_unittest.cc",
987 "ratelimiter_unittest.cc", 986 "ratelimiter_unittest.cc",
988 "rollingaccumulator_unittest.cc", 987 "rollingaccumulator_unittest.cc",
989 "rtccertificate_unittest.cc", 988 "rtccertificate_unittest.cc",
990 "rtccertificategenerator_unittest.cc", 989 "rtccertificategenerator_unittest.cc",
991 "sha1digest_unittest.cc", 990 "sha1digest_unittest.cc",
992 "signalthread_unittest.cc",
993 "sigslot_unittest.cc", 991 "sigslot_unittest.cc",
994 "sigslottester_unittest.cc", 992 "sigslottester_unittest.cc",
995 "stream_unittest.cc", 993 "stream_unittest.cc",
996 "testclient_unittest.cc", 994 "testclient_unittest.cc",
997 "thread_unittest.cc", 995 "thread_unittest.cc",
998 ] 996 ]
999 if (is_win) { 997 if (is_win) {
1000 sources += [ 998 sources += [
1001 "win32_unittest.cc", 999 "win32_unittest.cc",
1002 "win32window_unittest.cc", 1000 "win32window_unittest.cc",
(...skipping 28 matching lines...) Expand all
1031 if (is_android) { 1029 if (is_android) {
1032 android_library("base_java") { 1030 android_library("base_java") {
1033 java_files = [ 1031 java_files = [
1034 "java/src/org/webrtc/ContextUtils.java", 1032 "java/src/org/webrtc/ContextUtils.java",
1035 "java/src/org/webrtc/Logging.java", 1033 "java/src/org/webrtc/Logging.java",
1036 "java/src/org/webrtc/Size.java", 1034 "java/src/org/webrtc/Size.java",
1037 "java/src/org/webrtc/ThreadUtils.java", 1035 "java/src/org/webrtc/ThreadUtils.java",
1038 ] 1036 ]
1039 } 1037 }
1040 } 1038 }
OLDNEW
« no previous file with comments | « webrtc/examples/peerconnection/client/peer_connection_client.cc ('k') | webrtc/rtc_base/messagequeue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698