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

Side by Side Diff: media/blink/media_blink.gyp

Issue 1165903002: Multi reader/writer cache/buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fixes Created 5 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 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 { 5 {
6 'includes': [ 6 'includes': [
7 '../media_variables.gypi' 7 '../media_variables.gypi'
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 30 matching lines...) Expand all
41 'cache_util.h', 41 'cache_util.h',
42 'cdm_result_promise.h', 42 'cdm_result_promise.h',
43 'cdm_result_promise_helper.cc', 43 'cdm_result_promise_helper.cc',
44 'cdm_result_promise_helper.h', 44 'cdm_result_promise_helper.h',
45 'cdm_session_adapter.cc', 45 'cdm_session_adapter.cc',
46 'cdm_session_adapter.h', 46 'cdm_session_adapter.h',
47 'encrypted_media_player_support.cc', 47 'encrypted_media_player_support.cc',
48 'encrypted_media_player_support.h', 48 'encrypted_media_player_support.h',
49 'key_system_config_selector.cc', 49 'key_system_config_selector.cc',
50 'key_system_config_selector.h', 50 'key_system_config_selector.h',
51 'lru.h',
52 'multibuffer.cc',
53 'multibuffer.h',
54 'multibuffer_reader.cc',
55 'multibuffer_reader.h',
51 'new_session_cdm_result_promise.cc', 56 'new_session_cdm_result_promise.cc',
52 'new_session_cdm_result_promise.h', 57 'new_session_cdm_result_promise.h',
58 'rangemap.h',
53 'texttrack_impl.cc', 59 'texttrack_impl.cc',
54 'texttrack_impl.h', 60 'texttrack_impl.h',
55 'video_frame_compositor.cc', 61 'video_frame_compositor.cc',
56 'video_frame_compositor.h', 62 'video_frame_compositor.h',
57 'webaudiosourceprovider_impl.cc', 63 'webaudiosourceprovider_impl.cc',
58 'webaudiosourceprovider_impl.h', 64 'webaudiosourceprovider_impl.h',
59 'webcontentdecryptionmodule_impl.cc', 65 'webcontentdecryptionmodule_impl.cc',
60 'webcontentdecryptionmodule_impl.h', 66 'webcontentdecryptionmodule_impl.h',
61 'webcontentdecryptionmoduleaccess_impl.cc', 67 'webcontentdecryptionmoduleaccess_impl.cc',
62 'webcontentdecryptionmoduleaccess_impl.h', 68 'webcontentdecryptionmoduleaccess_impl.h',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 '../../ui/gfx/gfx.gyp:gfx_geometry', 117 '../../ui/gfx/gfx.gyp:gfx_geometry',
112 '../../ui/gfx/gfx.gyp:gfx_test_support', 118 '../../ui/gfx/gfx.gyp:gfx_test_support',
113 '../../url/url.gyp:url_lib', 119 '../../url/url.gyp:url_lib',
114 ], 120 ],
115 'sources': [ 121 'sources': [
116 'buffered_data_source_host_impl_unittest.cc', 122 'buffered_data_source_host_impl_unittest.cc',
117 'buffered_data_source_unittest.cc', 123 'buffered_data_source_unittest.cc',
118 'buffered_resource_loader_unittest.cc', 124 'buffered_resource_loader_unittest.cc',
119 'cache_util_unittest.cc', 125 'cache_util_unittest.cc',
120 'key_system_config_selector_unittest.cc', 126 'key_system_config_selector_unittest.cc',
127 'lru_unittest.cc',
121 'mock_webframeclient.h', 128 'mock_webframeclient.h',
122 'mock_weburlloader.cc', 129 'mock_weburlloader.cc',
123 'mock_weburlloader.h', 130 'mock_weburlloader.h',
131 'multibuffer_unittest.cc',
132 'rangemap_unittest.cc',
124 'run_all_unittests.cc', 133 'run_all_unittests.cc',
125 'test_response_generator.cc', 134 'test_response_generator.cc',
126 'test_response_generator.h', 135 'test_response_generator.h',
127 'video_frame_compositor_unittest.cc', 136 'video_frame_compositor_unittest.cc',
128 'webaudiosourceprovider_impl_unittest.cc', 137 'webaudiosourceprovider_impl_unittest.cc',
129 ], 138 ],
130 }, 139 },
131 ], 140 ],
132 'conditions': [ 141 'conditions': [
133 ['test_isolation_mode != "noop"', { 142 ['test_isolation_mode != "noop"', {
(...skipping 17 matching lines...) Expand all
151 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 160 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
152 ], 161 ],
153 } 162 }
154 ], 163 ],
155 ], 164 ],
156 }, 165 },
157 ], 166 ],
158 }], 167 }],
159 ], 168 ],
160 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698