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 1419253002: Rearrange dependency to enable adding finch experiment in webrtc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address Sergey's comments. Created 5 years, 2 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 | « no previous file | third_party/libjingle/libjingle_common.gypi » ('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 5c462bcdcc31490715f5e2132b8fd7464fc77e56..532104199e7ed7a895ec4cdfbbef59185147bc84 100644
--- a/third_party/libjingle/BUILD.gn
+++ b/third_party/libjingle/BUILD.gn
@@ -256,7 +256,14 @@ static_library("libjingle") {
}
if (is_nacl) {
- deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
+ # For NACL, we have to add a default implementation for field_trail.
+ deps += [
+ "//native_client_sdk/src/libraries/nacl_io",
+ "//third_party/webrtc/system_wrappers:field_trial_default",
+ ]
+ } else {
+ # Otherwise, we just add the field_trial which redirects to base.
+ sources += [ "overrides/field_trial.cc" ]
}
configs += [ ":jingle_unexported_configs" ]
« no previous file with comments | « no previous file | third_party/libjingle/libjingle_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698