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

Unified Diff: jingle/BUILD.gn

Issue 595073002: Replace forward_dependent_configs with public_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « gpu/command_buffer/client/BUILD.gn ('k') | media/cast/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/BUILD.gn
diff --git a/jingle/BUILD.gn b/jingle/BUILD.gn
index 7fd8f128d811fb710e582874b8b1fab17fbba815..7822bae14f21183c7ecef6381b7e5da2c2ff032f 100644
--- a/jingle/BUILD.gn
+++ b/jingle/BUILD.gn
@@ -13,13 +13,14 @@ if (enable_webrtc || !is_android) {
# GYP version: jingle/jingle.gyp:jingle_glue
static_library("jingle_glue") {
sources = jingle_includes.jingle_glue_sources
+ public_deps = [
+ "//third_party/libjingle",
+ ]
deps = [
"//base",
"//base/third_party/dynamic_annotations",
"//net",
- "//third_party/libjingle",
]
- forward_dependent_configs_from = [ "//third_party/libjingle" ]
}
# A library for sending and receiving peer-issued notifications.
@@ -77,15 +78,17 @@ if (enable_webrtc || !is_android) {
defines = [
"_CRT_SECURE_NO_WARNINGS",
]
+
+ public_deps = [
+ "//third_party/libjingle",
+ ]
deps = [
"//base",
"//net",
"//third_party/expat",
"//url",
":jingle_glue",
- "//third_party/libjingle",
]
- forward_dependent_configs_from = [ "//third_party/libjingle" ]
}
# GYP version: jingle/jingle.gyp:notifier_test_util
@@ -148,6 +151,9 @@ if (enable_webrtc || !is_android) {
]
}
+ public_deps = [
+ "//third_party/libjingle",
+ ]
deps = [
":jingle_glue",
":notifier",
@@ -159,9 +165,7 @@ if (enable_webrtc || !is_android) {
"//net:test_support",
"//testing/gmock",
"//testing/gtest",
- "//third_party/libjingle",
]
- forward_dependent_configs_from = [ "//third_party/libjingle" ]
}
} else {
# !enable_webrtc and is_android
« no previous file with comments | « gpu/command_buffer/client/BUILD.gn ('k') | media/cast/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698