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

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: one more compile fix Created 5 years, 2 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 { 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',
61 'url_index.cc',
62 'url_index.h',
55 'video_frame_compositor.cc', 63 'video_frame_compositor.cc',
56 'video_frame_compositor.h', 64 'video_frame_compositor.h',
57 'webaudiosourceprovider_impl.cc', 65 'webaudiosourceprovider_impl.cc',
58 'webaudiosourceprovider_impl.h', 66 'webaudiosourceprovider_impl.h',
59 'webcontentdecryptionmodule_impl.cc', 67 'webcontentdecryptionmodule_impl.cc',
60 'webcontentdecryptionmodule_impl.h', 68 'webcontentdecryptionmodule_impl.h',
61 'webcontentdecryptionmoduleaccess_impl.cc', 69 'webcontentdecryptionmoduleaccess_impl.cc',
62 'webcontentdecryptionmoduleaccess_impl.h', 70 'webcontentdecryptionmoduleaccess_impl.h',
63 'webcontentdecryptionmodulesession_impl.cc', 71 'webcontentdecryptionmodulesession_impl.cc',
64 'webcontentdecryptionmodulesession_impl.h', 72 'webcontentdecryptionmodulesession_impl.h',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 '../../ui/gfx/gfx.gyp:gfx_geometry', 119 '../../ui/gfx/gfx.gyp:gfx_geometry',
112 '../../ui/gfx/gfx.gyp:gfx_test_support', 120 '../../ui/gfx/gfx.gyp:gfx_test_support',
113 '../../url/url.gyp:url_lib', 121 '../../url/url.gyp:url_lib',
114 ], 122 ],
115 'sources': [ 123 'sources': [
116 'buffered_data_source_host_impl_unittest.cc', 124 'buffered_data_source_host_impl_unittest.cc',
117 'buffered_data_source_unittest.cc', 125 'buffered_data_source_unittest.cc',
118 'buffered_resource_loader_unittest.cc', 126 'buffered_resource_loader_unittest.cc',
119 'cache_util_unittest.cc', 127 'cache_util_unittest.cc',
120 'key_system_config_selector_unittest.cc', 128 'key_system_config_selector_unittest.cc',
129 'lru_unittest.cc',
121 'mock_webframeclient.h', 130 'mock_webframeclient.h',
122 'mock_weburlloader.cc', 131 'mock_weburlloader.cc',
123 'mock_weburlloader.h', 132 'mock_weburlloader.h',
133 'multibuffer_unittest.cc',
134 'rangemap_unittest.cc',
124 'run_all_unittests.cc', 135 'run_all_unittests.cc',
125 'test_response_generator.cc', 136 'test_response_generator.cc',
126 'test_response_generator.h', 137 'test_response_generator.h',
138 'url_index_unittests.cc',
127 'video_frame_compositor_unittest.cc', 139 'video_frame_compositor_unittest.cc',
128 'webaudiosourceprovider_impl_unittest.cc', 140 'webaudiosourceprovider_impl_unittest.cc',
129 ], 141 ],
130 }, 142 },
131 ], 143 ],
132 'conditions': [ 144 'conditions': [
133 ['test_isolation_mode != "noop"', { 145 ['test_isolation_mode != "noop"', {
134 'targets': [ 146 'targets': [
135 { 147 {
136 'target_name': 'media_blink_unittests_run', 148 'target_name': 'media_blink_unittests_run',
(...skipping 14 matching lines...) Expand all
151 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 163 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
152 ], 164 ],
153 } 165 }
154 ], 166 ],
155 ], 167 ],
156 }, 168 },
157 ], 169 ],
158 }], 170 }],
159 ], 171 ],
160 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698