OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 group("webrtc_overrides") { | 5 group("webrtc_overrides") { |
6 public_deps = [ | 6 public_deps = [ |
7 ":webrtc", | 7 ":webrtc", |
8 ] | 8 ] |
9 } | 9 } |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 41 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
43 | 43 |
44 public_deps = [ | 44 public_deps = [ |
45 ":jingle_deps", | 45 ":jingle_deps", |
46 | 46 |
47 # TODO(kjellander): Start cleaning up this target as soon as | 47 # TODO(kjellander): Start cleaning up this target as soon as |
48 # https://codereview.chromium.org/2022833002/ is landed. The target should | 48 # https://codereview.chromium.org/2022833002/ is landed. The target should |
49 # be removed entirely if possible. | 49 # be removed entirely if possible. |
50 "//third_party/libjingle_xmpp:rtc_task_runner", | 50 "//third_party/libjingle_xmpp:rtc_task_runner", |
51 "//third_party/webrtc/base:rtc_base", | 51 "//third_party/webrtc/base:rtc_base_approved", |
52 ] | 52 ] |
53 deps = [ | 53 deps = [ |
54 "//third_party/webrtc/p2p:rtc_p2p", | 54 "//third_party/webrtc/p2p:rtc_p2p", |
55 ] | 55 ] |
56 | 56 |
57 if (is_win) { | 57 if (is_win) { |
58 cflags = [ "/wd4005" ] | 58 cflags = [ "/wd4005" ] |
59 } | 59 } |
60 | 60 |
61 if (is_nacl) { | 61 if (is_nacl) { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "//third_party/webrtc/api:libjingle_peerconnection", | 116 "//third_party/webrtc/api:libjingle_peerconnection", |
117 "//third_party/webrtc/media:rtc_media", | 117 "//third_party/webrtc/media:rtc_media", |
118 "//third_party/webrtc/media:rtc_media_base", | 118 "//third_party/webrtc/media:rtc_media_base", |
119 "//third_party/webrtc/modules/media_file", | 119 "//third_party/webrtc/modules/media_file", |
120 "//third_party/webrtc/modules/video_capture", | 120 "//third_party/webrtc/modules/video_capture", |
121 "//third_party/webrtc/pc:rtc_pc", | 121 "//third_party/webrtc/pc:rtc_pc", |
122 "//third_party/webrtc/system_wrappers", | 122 "//third_party/webrtc/system_wrappers", |
123 "//third_party/webrtc/voice_engine", | 123 "//third_party/webrtc/voice_engine", |
124 ] | 124 ] |
125 } | 125 } |
OLD | NEW |