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

Unified Diff: third_party/libjingle/BUILD.gn

Issue 2082473002: Move third_party/libjingle/overrides to third_party/webrtc_overrides (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « jingle/glue/DEPS ('k') | third_party/libjingle/libjingle.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libjingle/BUILD.gn
diff --git a/third_party/libjingle/BUILD.gn b/third_party/libjingle/BUILD.gn
index 87333b697c3ab3cd2d784ad6ab03486af56dd5eb..b99acfbfaaa2d59fc3d53b0c79c0b8b262c16ac5 100644
--- a/third_party/libjingle/BUILD.gn
+++ b/third_party/libjingle/BUILD.gn
@@ -26,9 +26,7 @@ config("jingle_unexported_configs") {
]
include_dirs = [
- "overrides",
"../../third_party/webrtc_overrides",
- "source",
"../../testing/gtest/include",
"../../third_party",
"../../third_party/libyuv/include",
@@ -40,8 +38,6 @@ config("jingle_unexported_configs") {
config("jingle_public_configs") {
include_dirs = [
"../../third_party/webrtc_overrides",
- "overrides",
- "source",
"../../testing/gtest/include",
"../../third_party",
]
@@ -225,7 +221,7 @@ static_library("libjingle") {
]
} else {
# Otherwise, we just add the field_trial which redirects to base.
- sources += [ "overrides/field_trial.cc" ]
+ sources += [ "../webrtc_overrides/field_trial.cc" ]
}
configs += [ ":jingle_unexported_configs" ]
@@ -233,10 +229,13 @@ static_library("libjingle") {
}
if (enable_webrtc) {
+ # TODO(kjellander): Move this target into //third_party/webrtc_overrides as
+ # soon as the work in bugs.webrtc.org/4256 has gotten rid of the duplicated
+ # source listings above.
source_set("libjingle_webrtc") {
sources = [
- "overrides/init_webrtc.cc",
- "overrides/init_webrtc.h",
+ "../webrtc_overrides/init_webrtc.cc",
+ "../webrtc_overrides/init_webrtc.h",
]
configs += [ ":jingle_unexported_configs" ]
public_configs = [ ":jingle_public_configs" ]
« no previous file with comments | « jingle/glue/DEPS ('k') | third_party/libjingle/libjingle.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698