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

Side by Side Diff: media/gpu/BUILD.gn

Issue 2508053002: media: Do a TimedWait() for video surface teardown in AVDA (Closed)
Patch Set: Created 4 years, 1 month 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/gpu/args.gni") 7 import("//media/gpu/args.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 "android_video_decode_accelerator.h", 211 "android_video_decode_accelerator.h",
212 "avda_codec_allocator.cc", 212 "avda_codec_allocator.cc",
213 "avda_codec_allocator.h", 213 "avda_codec_allocator.h",
214 "avda_codec_image.cc", 214 "avda_codec_image.cc",
215 "avda_codec_image.h", 215 "avda_codec_image.h",
216 "avda_picture_buffer_manager.cc", 216 "avda_picture_buffer_manager.cc",
217 "avda_picture_buffer_manager.h", 217 "avda_picture_buffer_manager.h",
218 "avda_shared_state.cc", 218 "avda_shared_state.cc",
219 "avda_shared_state.h", 219 "avda_shared_state.h",
220 "avda_state_provider.h", 220 "avda_state_provider.h",
221 "avda_surface_tracker.cc",
222 "avda_surface_tracker.h",
223 ] 221 ]
224 222
225 if (enable_webrtc) { 223 if (enable_webrtc) {
226 deps += [ "//third_party/libyuv" ] 224 deps += [ "//third_party/libyuv" ]
227 sources += [ 225 sources += [
228 "android_video_encode_accelerator.cc", 226 "android_video_encode_accelerator.cc",
229 "android_video_encode_accelerator.h", 227 "android_video_encode_accelerator.h",
230 ] 228 ]
231 } 229 }
232 230
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 "video_accelerator_unittest_helpers.h", 513 "video_accelerator_unittest_helpers.h",
516 ] 514 ]
517 if (use_x11) { 515 if (use_x11) {
518 deps += [ "//ui/gfx/x" ] 516 deps += [ "//ui/gfx/x" ]
519 } 517 }
520 if (use_ozone) { 518 if (use_ozone) {
521 deps += [ "//ui/ozone" ] 519 deps += [ "//ui/ozone" ]
522 } 520 }
523 } 521 }
524 } 522 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698