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

Side by Side Diff: media/BUILD.gn

Issue 1673383002: Add allocator interface for use by cdm_adapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simple classes Created 4 years, 10 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 | « no previous file | media/cdm/aes_decryptor_unittest.cc » ('j') | media/cdm/cdm_buffer_allocator.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "capture/video/win/video_capture_device_mf_win.cc", 167 "capture/video/win/video_capture_device_mf_win.cc",
168 "capture/video/win/video_capture_device_mf_win.h", 168 "capture/video/win/video_capture_device_mf_win.h",
169 "capture/video/win/video_capture_device_win.cc", 169 "capture/video/win/video_capture_device_win.cc",
170 "capture/video/win/video_capture_device_win.h", 170 "capture/video/win/video_capture_device_win.h",
171 "capture/webm_muxer.cc", 171 "capture/webm_muxer.cc",
172 "capture/webm_muxer.h", 172 "capture/webm_muxer.h",
173 "cdm/aes_decryptor.cc", 173 "cdm/aes_decryptor.cc",
174 "cdm/aes_decryptor.h", 174 "cdm/aes_decryptor.h",
175 "cdm/cdm_adapter.cc", 175 "cdm/cdm_adapter.cc",
176 "cdm/cdm_adapter.h", 176 "cdm/cdm_adapter.h",
177 "cdm/cdm_buffer_impl.cc", 177 "cdm/cdm_buffer.cc",
178 "cdm/cdm_buffer_impl.h", 178 "cdm/cdm_buffer.h",
179 "cdm/cdm_buffer_allocator.cc",
180 "cdm/cdm_buffer_allocator.h",
179 "cdm/cdm_helpers.cc", 181 "cdm/cdm_helpers.cc",
180 "cdm/cdm_helpers.h", 182 "cdm/cdm_helpers.h",
183 "cdm/cdm_video_frame.cc",
184 "cdm/cdm_video_frame.h",
181 "cdm/default_cdm_factory.cc", 185 "cdm/default_cdm_factory.cc",
182 "cdm/default_cdm_factory.h", 186 "cdm/default_cdm_factory.h",
183 "cdm/json_web_key.cc", 187 "cdm/json_web_key.cc",
184 "cdm/json_web_key.h", 188 "cdm/json_web_key.h",
185 "cdm/key_system_names.cc", 189 "cdm/key_system_names.cc",
186 "cdm/key_system_names.h", 190 "cdm/key_system_names.h",
187 "cdm/player_tracker_impl.cc", 191 "cdm/player_tracker_impl.cc",
188 "cdm/player_tracker_impl.h", 192 "cdm/player_tracker_impl.h",
189 "cdm/proxy_decryptor.cc", 193 "cdm/proxy_decryptor.cc",
190 "cdm/proxy_decryptor.h", 194 "cdm/proxy_decryptor.h",
195 "cdm/simple_cdm_buffer.cc",
196 "cdm/simple_cdm_buffer.h",
197 "cdm/simple_cdm_buffer_allocator.cc",
198 "cdm/simple_cdm_buffer_allocator.h",
191 "cdm/supported_cdm_versions.cc", 199 "cdm/supported_cdm_versions.cc",
192 "cdm/supported_cdm_versions.h", 200 "cdm/supported_cdm_versions.h",
193 "ffmpeg/ffmpeg_deleters.h", 201 "ffmpeg/ffmpeg_deleters.h",
194 "filters/audio_clock.cc", 202 "filters/audio_clock.cc",
195 "filters/audio_clock.h", 203 "filters/audio_clock.h",
196 "filters/audio_renderer_algorithm.cc", 204 "filters/audio_renderer_algorithm.cc",
197 "filters/audio_renderer_algorithm.h", 205 "filters/audio_renderer_algorithm.h",
198 "filters/chunk_demuxer.cc", 206 "filters/chunk_demuxer.cc",
199 "filters/chunk_demuxer.h", 207 "filters/chunk_demuxer.h",
200 "filters/context_3d.h", 208 "filters/context_3d.h",
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 "//media/base:test_support", 919 "//media/base:test_support",
912 "//media/test:pipeline_integration_tests", 920 "//media/test:pipeline_integration_tests",
913 "//testing/gmock", 921 "//testing/gmock",
914 "//testing/gtest", 922 "//testing/gtest",
915 "//third_party/ffmpeg", 923 "//third_party/ffmpeg",
916 "//ui/gfx:test_support", 924 "//ui/gfx:test_support",
917 "//ui/gfx/geometry", 925 "//ui/gfx/geometry",
918 ] 926 ]
919 } 927 }
920 } 928 }
OLDNEW
« no previous file with comments | « no previous file | media/cdm/aes_decryptor_unittest.cc » ('j') | media/cdm/cdm_buffer_allocator.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698