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

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

Issue 2794033002: Revert of Move video_encoder.h and video_decoder.h to /api and create GN targets for them (Closed)
Patch Set: 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
« no previous file with comments | « webrtc/test/fake_encoder.h ('k') | webrtc/video/end_to_end_tests.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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 ] 51 ]
52 52
53 if (!build_with_chromium && is_clang) { 53 if (!build_with_chromium && is_clang) {
54 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 54 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
55 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 55 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
56 } 56 }
57 57
58 deps = [ 58 deps = [
59 "..:webrtc_common", 59 "..:webrtc_common",
60 "../api:transport_api", 60 "../api:transport_api",
61 "../api/video_codecs:video_codecs_api",
62 "../base:rtc_base_approved", 61 "../base:rtc_base_approved",
63 "../base:rtc_numerics", 62 "../base:rtc_numerics",
64 "../base:rtc_task_queue", 63 "../base:rtc_task_queue",
65 "../common_video", 64 "../common_video",
66 "../logging:rtc_event_log_api", 65 "../logging:rtc_event_log_api",
67 "../media:rtc_media_base", 66 "../media:rtc_media_base",
68 "../modules/bitrate_controller", 67 "../modules/bitrate_controller",
69 "../modules/congestion_controller", 68 "../modules/congestion_controller",
70 "../modules/pacing", 69 "../modules/pacing",
71 "../modules/remote_bitrate_estimator", 70 "../modules/remote_bitrate_estimator",
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 161 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
163 } 162 }
164 } 163 }
165 164
166 rtc_executable("video_replay") { 165 rtc_executable("video_replay") {
167 testonly = true 166 testonly = true
168 sources = [ 167 sources = [
169 "replay.cc", 168 "replay.cc",
170 ] 169 ]
171 deps = [ 170 deps = [
172 "../api/video_codecs:video_codecs_api",
173 "../system_wrappers:metrics_default", 171 "../system_wrappers:metrics_default",
174 "../test:field_trial", 172 "../test:field_trial",
175 "../test:run_test", 173 "../test:run_test",
176 "../test:test_common", 174 "../test:test_common",
177 "../test:test_renderer", 175 "../test:test_renderer",
178 "//third_party/gflags", 176 "//third_party/gflags",
179 ] 177 ]
180 if (!build_with_chromium && is_clang) { 178 if (!build_with_chromium && is_clang) {
181 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 179 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
182 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 180 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 ] 212 ]
215 if (!build_with_chromium && is_clang) { 213 if (!build_with_chromium && is_clang) {
216 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 214 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
217 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 215 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
218 } 216 }
219 if (rtc_use_h264) { 217 if (rtc_use_h264) {
220 defines += [ "WEBRTC_USE_H264" ] 218 defines += [ "WEBRTC_USE_H264" ]
221 } 219 }
222 } 220 }
223 } 221 }
OLDNEW
« no previous file with comments | « webrtc/test/fake_encoder.h ('k') | webrtc/video/end_to_end_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698