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

Side by Side Diff: media/BUILD.gn

Issue 1016773002: MJPEG acceleration for video capture using VAAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix coded size, shm handle Created 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 "video/capture/win/video_capture_device_factory_win.cc", 240 "video/capture/win/video_capture_device_factory_win.cc",
241 "video/capture/win/video_capture_device_factory_win.h", 241 "video/capture/win/video_capture_device_factory_win.h",
242 "video/capture/win/video_capture_device_mf_win.cc", 242 "video/capture/win/video_capture_device_mf_win.cc",
243 "video/capture/win/video_capture_device_mf_win.h", 243 "video/capture/win/video_capture_device_mf_win.h",
244 "video/capture/win/video_capture_device_win.cc", 244 "video/capture/win/video_capture_device_win.cc",
245 "video/capture/win/video_capture_device_win.h", 245 "video/capture/win/video_capture_device_win.h",
246 "video/fake_video_encode_accelerator.cc", 246 "video/fake_video_encode_accelerator.cc",
247 "video/fake_video_encode_accelerator.h", 247 "video/fake_video_encode_accelerator.h",
248 "video/h264_poc.cc", 248 "video/h264_poc.cc",
249 "video/h264_poc.h", 249 "video/h264_poc.h",
250 "video/jpeg_decode_accelerator.cc",
251 "video/jpeg_decode_accelerator.h",
250 "video/picture.cc", 252 "video/picture.cc",
251 "video/picture.h", 253 "video/picture.h",
252 "video/video_decode_accelerator.cc", 254 "video/video_decode_accelerator.cc",
253 "video/video_decode_accelerator.h", 255 "video/video_decode_accelerator.h",
254 "video/video_encode_accelerator.cc", 256 "video/video_encode_accelerator.cc",
255 "video/video_encode_accelerator.h", 257 "video/video_encode_accelerator.h",
256 ] 258 ]
257 259
258 configs += [ 260 configs += [
259 ":media_config", 261 ":media_config",
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 deps = [ 808 deps = [
807 ":media", 809 ":media",
808 ":shared_memory_support", 810 ":shared_memory_support",
809 "//base", 811 "//base",
810 "//ui/gl", 812 "//ui/gl",
811 "//ui/gfx", 813 "//ui/gfx",
812 "//ui/gfx/geometry", 814 "//ui/gfx/geometry",
813 ] 815 ]
814 } 816 }
815 } 817 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698