OLD | NEW |
---|---|
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 Loading... | |
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. |
OLD | NEW |