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

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: commments addressed 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
« 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("//media/media_options.gni") 5 import("//media/media_options.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("blink") { 8 component("blink") {
9 output_name = "media_blink" 9 output_name = "media_blink"
10 10
(...skipping 25 matching lines...) Expand all
36 "buffered_resource_loader.h", 36 "buffered_resource_loader.h",
37 "cache_util.cc", 37 "cache_util.cc",
38 "cache_util.h", 38 "cache_util.h",
39 "cdm_result_promise.h", 39 "cdm_result_promise.h",
40 "cdm_result_promise_helper.cc", 40 "cdm_result_promise_helper.cc",
41 "cdm_result_promise_helper.h", 41 "cdm_result_promise_helper.h",
42 "cdm_session_adapter.cc", 42 "cdm_session_adapter.cc",
43 "cdm_session_adapter.h", 43 "cdm_session_adapter.h",
44 "key_system_config_selector.cc", 44 "key_system_config_selector.cc",
45 "key_system_config_selector.h", 45 "key_system_config_selector.h",
46 "lru.h",
47 "multibuffer.cc",
48 "multibuffer.h",
49 "multibuffer_reader.cc",
50 "multibuffer_reader.h",
46 "new_session_cdm_result_promise.cc", 51 "new_session_cdm_result_promise.cc",
47 "new_session_cdm_result_promise.h", 52 "new_session_cdm_result_promise.h",
53 "rangemap.h",
48 "texttrack_impl.cc", 54 "texttrack_impl.cc",
49 "texttrack_impl.h", 55 "texttrack_impl.h",
50 "video_frame_compositor.cc", 56 "video_frame_compositor.cc",
51 "video_frame_compositor.h", 57 "video_frame_compositor.h",
52 "webaudiosourceprovider_impl.cc", 58 "webaudiosourceprovider_impl.cc",
53 "webaudiosourceprovider_impl.h", 59 "webaudiosourceprovider_impl.h",
54 "webcontentdecryptionmodule_impl.cc", 60 "webcontentdecryptionmodule_impl.cc",
55 "webcontentdecryptionmodule_impl.h", 61 "webcontentdecryptionmodule_impl.h",
56 "webcontentdecryptionmoduleaccess_impl.cc", 62 "webcontentdecryptionmoduleaccess_impl.cc",
57 "webcontentdecryptionmoduleaccess_impl.h", 63 "webcontentdecryptionmoduleaccess_impl.h",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 ] 111 ]
106 112
107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 113 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
108 114
109 sources = [ 115 sources = [
110 "buffered_data_source_host_impl_unittest.cc", 116 "buffered_data_source_host_impl_unittest.cc",
111 "buffered_data_source_unittest.cc", 117 "buffered_data_source_unittest.cc",
112 "buffered_resource_loader_unittest.cc", 118 "buffered_resource_loader_unittest.cc",
113 "cache_util_unittest.cc", 119 "cache_util_unittest.cc",
114 "key_system_config_selector_unittest.cc", 120 "key_system_config_selector_unittest.cc",
121 "lru_unittest.cc",
115 "mock_webframeclient.h", 122 "mock_webframeclient.h",
116 "mock_weburlloader.cc", 123 "mock_weburlloader.cc",
117 "mock_weburlloader.h", 124 "mock_weburlloader.h",
125 "multibuffer_unittest.cc",
126 "rangemap_unittest.cc",
118 "run_all_unittests.cc", 127 "run_all_unittests.cc",
119 "test_response_generator.cc", 128 "test_response_generator.cc",
120 "test_response_generator.h", 129 "test_response_generator.h",
121 "video_frame_compositor_unittest.cc", 130 "video_frame_compositor_unittest.cc",
122 "webaudiosourceprovider_impl_unittest.cc", 131 "webaudiosourceprovider_impl_unittest.cc",
123 ] 132 ]
124 133
125 if (is_android) { 134 if (is_android) {
126 deps += [ "//ui/gl" ] 135 deps += [ "//ui/gl" ]
127 } 136 }
128 137
129 configs += [ "//v8:external_startup_data" ] 138 configs += [ "//v8:external_startup_data" ]
130 } 139 }
131 140
132 # TODO(GYP): Delete this after we've converted everything to GN. 141 # TODO(GYP): Delete this after we've converted everything to GN.
133 # The _run targets exist only for compatibility w/ GYP. 142 # The _run targets exist only for compatibility w/ GYP.
134 group("media_blink_unittests_run") { 143 group("media_blink_unittests_run") {
135 testonly = true 144 testonly = true
136 deps = [ 145 deps = [
137 ":media_blink_unittests", 146 ":media_blink_unittests",
138 ] 147 ]
139 } 148 }
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