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

Side by Side Diff: third_party/libjingle/BUILD.gn

Issue 523073003: Update libjingle's GN build config to match a recent fix. (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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 6
7 # From third_party/libjingle/libjingle.gyp's target_defaults. 7 # From third_party/libjingle/libjingle.gyp's target_defaults.
8 config("jingle_unexported_configs") { 8 config("jingle_unexported_configs") {
9 defines = [ 9 defines = [
10 "EXPAT_RELATIVE_PATH", 10 "EXPAT_RELATIVE_PATH",
11 "FEATURE_ENABLE_SSL", 11 "FEATURE_ENABLE_SSL",
12 "GTEST_RELATIVE_PATH", 12 "GTEST_RELATIVE_PATH",
13 "HAVE_SRTP", 13 "HAVE_SRTP",
14 "HAVE_WEBRTC_VIDEO", 14 "HAVE_WEBRTC_VIDEO",
15 "HAVE_WEBRTC_VOICE", 15 "HAVE_WEBRTC_VOICE",
16 "LOGGING_INSIDE_WEBRTC", 16 "LOGGING_INSIDE_WEBRTC",
17 "NO_MAIN_THREAD_WRAPPING", 17 "NO_MAIN_THREAD_WRAPPING",
18 "NO_SOUND_SYSTEM", 18 "NO_SOUND_SYSTEM",
19 "SRTP_RELATIVE_PATH", 19 "SRTP_RELATIVE_PATH",
20 "USE_WEBRTC_DEV_BRANCH", 20 "USE_WEBRTC_DEV_BRANCH",
21 "ENABLE_EXTERNAL_AUTH", 21 "ENABLE_EXTERNAL_AUTH",
22 "WEBRTC_CHROMIUM_BUILD",
kjellander_chromium 2014/08/30 17:01:52 drive-by review: For the future, this should reall
22 ] 23 ]
23 24
24 include_dirs = [ 25 include_dirs = [
25 "overrides", 26 "overrides",
26 "../../third_party/webrtc/overrides", 27 "../../third_party/webrtc/overrides",
27 "source", 28 "source",
28 "../../testing/gtest/include", 29 "../../testing/gtest/include",
29 "../../third_party", 30 "../../third_party",
30 "../../third_party/libyuv/include", 31 "../../third_party/libyuv/include",
31 "../../third_party/usrsctp", 32 "../../third_party/usrsctp",
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 all_dependent_configs = [ 336 all_dependent_configs = [
336 ":jingle_all_dependent_configs", 337 ":jingle_all_dependent_configs",
337 ] 338 ]
338 if (is_win) { 339 if (is_win) {
339 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 340 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
340 cflags = [ "/wd4309" ] 341 cflags = [ "/wd4309" ]
341 } 342 }
342 } 343 }
343 344
344 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. 345 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block.
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698