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

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

Issue 1829163002: Lazily prune the multibuffer block cache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test added + moved FakeSingleThreadTaskRunner to media/base Created 4 years, 8 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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 "//third_party/opus", 236 "//third_party/opus",
237 ] 237 ]
238 } 238 }
239 } 239 }
240 240
241 static_library("test_support") { 241 static_library("test_support") {
242 testonly = true 242 testonly = true
243 sources = [ 243 sources = [
244 "test/fake_receiver_time_offset_estimator.cc", 244 "test/fake_receiver_time_offset_estimator.cc",
245 "test/fake_receiver_time_offset_estimator.h", 245 "test/fake_receiver_time_offset_estimator.h",
246 "test/fake_single_thread_task_runner.cc",
247 "test/fake_single_thread_task_runner.h",
248 "test/loopback_transport.cc", 246 "test/loopback_transport.cc",
249 "test/loopback_transport.h", 247 "test/loopback_transport.h",
250 "test/skewed_single_thread_task_runner.cc", 248 "test/skewed_single_thread_task_runner.cc",
251 "test/skewed_single_thread_task_runner.h", 249 "test/skewed_single_thread_task_runner.h",
252 "test/skewed_tick_clock.cc", 250 "test/skewed_tick_clock.cc",
253 "test/skewed_tick_clock.h", 251 "test/skewed_tick_clock.h",
254 "test/utility/audio_utility.cc", 252 "test/utility/audio_utility.cc",
255 "test/utility/audio_utility.h", 253 "test/utility/audio_utility.h",
256 "test/utility/barcode.cc", 254 "test/utility/barcode.cc",
257 "test/utility/barcode.h", 255 "test/utility/barcode.h",
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 deps = [ 539 deps = [
542 ":sender", 540 ":sender",
543 ] 541 ]
544 } 542 }
545 543
546 static_library("cast_receiver") { 544 static_library("cast_receiver") {
547 deps = [ 545 deps = [
548 ":receiver", 546 ":receiver",
549 ] 547 ]
550 } 548 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698