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

Side by Side Diff: webrtc/pc/BUILD.gn

Issue 2720663003: Support GCM ciphers even if ENABLE_EXTERNAL_AUTH is defined. (Closed)
Patch Set: Fixed win_x64 compile errors (added explicit casts). Created 3 years, 9 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 | webrtc/pc/channel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "srtpfilter.h", 48 "srtpfilter.h",
49 "voicechannel.h", 49 "voicechannel.h",
50 ] 50 ]
51 51
52 deps = [ 52 deps = [
53 "../api:call_api", 53 "../api:call_api",
54 "../base:rtc_base", 54 "../base:rtc_base",
55 "../media", 55 "../media",
56 ] 56 ]
57 57
58 if (build_with_chromium) { 58 if (rtc_enable_external_auth) {
59 sources += [ 59 sources += [
60 "externalhmac.cc", 60 "externalhmac.cc",
61 "externalhmac.h", 61 "externalhmac.h",
62 ] 62 ]
63 } 63 }
64 if (rtc_build_libsrtp) { 64 if (rtc_build_libsrtp) {
65 deps += [ "//third_party/libsrtp" ] 65 deps += [ "//third_party/libsrtp" ]
66 } 66 }
67 67
68 public_configs = [ ":rtc_pc_config" ] 68 public_configs = [ ":rtc_pc_config" ]
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 "//testing/gmock", 361 "//testing/gmock",
362 ] 362 ]
363 363
364 if (is_android) { 364 if (is_android) {
365 deps += [ "//testing/android/native_test:native_test_support" ] 365 deps += [ "//testing/android/native_test:native_test_support" ]
366 366
367 shard_timeout = 900 367 shard_timeout = 900
368 } 368 }
369 } 369 }
370 } 370 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/pc/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698