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

Unified Diff: webrtc/rtc_base/BUILD.gn

Issue 3008553002: rtc_task_queue should not expose rtc_base_approved API (Closed)
Patch Set: Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/utility/BUILD.gn ('k') | webrtc/rtc_tools/network_tester/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/rtc_base/BUILD.gn
diff --git a/webrtc/rtc_base/BUILD.gn b/webrtc/rtc_base/BUILD.gn
index d26d5e7d853ce6f39b5a89f5a87da7ef3ffc01a2..a3253e36caed57f3ab5c56331f88677b716b2197 100644
--- a/webrtc/rtc_base/BUILD.gn
+++ b/webrtc/rtc_base/BUILD.gn
@@ -296,15 +296,15 @@ config("enable_libevent_config") {
}
rtc_source_set("rtc_task_queue") {
- public_deps = [
+ deps = [
":rtc_base_approved",
+ ]
+ public_deps = [
":rtc_task_queue_api",
]
if (rtc_link_task_queue_impl) {
- deps = [
- ":rtc_task_queue_impl",
- ]
+ deps += [ ":rtc_task_queue_impl" ]
}
}
@@ -372,6 +372,7 @@ rtc_static_library("sequenced_task_checker") {
"sequenced_task_checker_impl.h",
]
deps = [
+ ":rtc_base_approved",
":rtc_task_queue",
]
}
@@ -905,6 +906,7 @@ if (rtc_include_tests) {
"task_queue_unittest.cc",
]
deps = [
+ ":rtc_base_approved",
":rtc_base_tests_main",
":rtc_base_tests_utils",
":rtc_task_queue",
« no previous file with comments | « webrtc/modules/utility/BUILD.gn ('k') | webrtc/rtc_tools/network_tester/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698