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

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

Issue 1165903002: Multi reader/writer cache/buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lru unit tests Created 5 years, 6 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/blink/lru.h » ('j') | media/blink/multibuffer.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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("blink") { 7 component("blink") {
8 output_name = "media_blink" 8 output_name = "media_blink"
9 9
10 deps = [ 10 deps = [
(...skipping 26 matching lines...) Expand all
37 "cache_util.h", 37 "cache_util.h",
38 "cdm_result_promise.h", 38 "cdm_result_promise.h",
39 "cdm_result_promise_helper.cc", 39 "cdm_result_promise_helper.cc",
40 "cdm_result_promise_helper.h", 40 "cdm_result_promise_helper.h",
41 "cdm_session_adapter.cc", 41 "cdm_session_adapter.cc",
42 "cdm_session_adapter.h", 42 "cdm_session_adapter.h",
43 "encrypted_media_player_support.cc", 43 "encrypted_media_player_support.cc",
44 "encrypted_media_player_support.h", 44 "encrypted_media_player_support.h",
45 "key_system_config_selector.cc", 45 "key_system_config_selector.cc",
46 "key_system_config_selector.h", 46 "key_system_config_selector.h",
47 "lru.h",
48 "multibuffer.cc",
49 "multibuffer.h",
47 "new_session_cdm_result_promise.cc", 50 "new_session_cdm_result_promise.cc",
48 "new_session_cdm_result_promise.h", 51 "new_session_cdm_result_promise.h",
52 "rangemap.h",
49 "texttrack_impl.cc", 53 "texttrack_impl.cc",
50 "texttrack_impl.h", 54 "texttrack_impl.h",
51 "video_frame_compositor.cc", 55 "video_frame_compositor.cc",
52 "video_frame_compositor.h", 56 "video_frame_compositor.h",
57 "waiter_index.cc",
58 "waiter_index.h",
53 "webaudiosourceprovider_impl.cc", 59 "webaudiosourceprovider_impl.cc",
54 "webaudiosourceprovider_impl.h", 60 "webaudiosourceprovider_impl.h",
55 "webcontentdecryptionmodule_impl.cc", 61 "webcontentdecryptionmodule_impl.cc",
56 "webcontentdecryptionmodule_impl.h", 62 "webcontentdecryptionmodule_impl.h",
57 "webcontentdecryptionmoduleaccess_impl.cc", 63 "webcontentdecryptionmoduleaccess_impl.cc",
58 "webcontentdecryptionmoduleaccess_impl.h", 64 "webcontentdecryptionmoduleaccess_impl.h",
59 "webcontentdecryptionmodulesession_impl.cc", 65 "webcontentdecryptionmodulesession_impl.cc",
60 "webcontentdecryptionmodulesession_impl.h", 66 "webcontentdecryptionmodulesession_impl.h",
61 "webencryptedmediaclient_impl.cc", 67 "webencryptedmediaclient_impl.cc",
62 "webencryptedmediaclient_impl.h", 68 "webencryptedmediaclient_impl.h",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 ] 114 ]
109 115
110 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 116 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
111 117
112 sources = [ 118 sources = [
113 "buffered_data_source_host_impl_unittest.cc", 119 "buffered_data_source_host_impl_unittest.cc",
114 "buffered_data_source_unittest.cc", 120 "buffered_data_source_unittest.cc",
115 "buffered_resource_loader_unittest.cc", 121 "buffered_resource_loader_unittest.cc",
116 "cache_util_unittest.cc", 122 "cache_util_unittest.cc",
117 "key_system_config_selector_unittest.cc", 123 "key_system_config_selector_unittest.cc",
124 "lru_unittests.cc",
118 "mock_webframeclient.h", 125 "mock_webframeclient.h",
119 "mock_weburlloader.cc", 126 "mock_weburlloader.cc",
120 "mock_weburlloader.h", 127 "mock_weburlloader.h",
128 "rangemap_unittests.cc",
121 "run_all_unittests.cc", 129 "run_all_unittests.cc",
122 "test_response_generator.cc", 130 "test_response_generator.cc",
123 "test_response_generator.h", 131 "test_response_generator.h",
124 "video_frame_compositor_unittest.cc", 132 "video_frame_compositor_unittest.cc",
125 "webaudiosourceprovider_impl_unittest.cc", 133 "webaudiosourceprovider_impl_unittest.cc",
126 ] 134 ]
127 135
128 if (is_android) { 136 if (is_android) {
129 deps += [ "//ui/gl" ] 137 deps += [ "//ui/gl" ]
130 } 138 }
131 } 139 }
132 } 140 }
OLDNEW
« no previous file with comments | « no previous file | media/blink/lru.h » ('j') | media/blink/multibuffer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698