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

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

Issue 2795163002: Reland of Move video_encoder.h and video_decoder.h to /api and create GN targets for them (Closed)
Patch Set: Revert changes to PRESUBMIT.py for testing on buildbots Created 3 years, 8 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
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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 if (!build_with_chromium && is_clang) { 139 if (!build_with_chromium && is_clang) {
140 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 140 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
141 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 141 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
142 } 142 }
143 143
144 deps = [ 144 deps = [
145 ":rtc_pc", 145 ":rtc_pc",
146 "../api:call_api", 146 "../api:call_api",
147 "../api:rtc_stats_api", 147 "../api:rtc_stats_api",
148 "../api/video_codecs:video_codecs_api",
148 "../call", 149 "../call",
149 "../media", 150 "../media",
150 "../stats", 151 "../stats",
151 ] 152 ]
152 153
153 public_deps = [ 154 public_deps = [
154 "../api:libjingle_peerconnection_api", 155 "../api:libjingle_peerconnection_api",
155 ] 156 ]
156 157
157 if (rtc_use_quic) { 158 if (rtc_use_quic) {
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 "//testing/gmock", 361 "//testing/gmock",
361 ] 362 ]
362 363
363 if (is_android) { 364 if (is_android) {
364 deps += [ "//testing/android/native_test:native_test_support" ] 365 deps += [ "//testing/android/native_test:native_test_support" ]
365 366
366 shard_timeout = 900 367 shard_timeout = 900
367 } 368 }
368 } 369 }
369 } 370 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698