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

Side by Side Diff: chromecast/media/cma/BUILD.gn

Issue 2922003002: [Chromecast] Enable MultizoneBackendTest on Earth. (Closed)
Patch Set: Default supports_multizone to false for desktop builds. Created 3 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 | « chromecast/chromecast.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//chromecast/chromecast.gni") 5 import("//chromecast/chromecast.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 # Targets may depend on this to bring in every CMA component. 8 # Targets may depend on this to bring in every CMA component.
9 group("cma") { 9 group("cma") {
10 public_deps = [ 10 public_deps = [
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 "//media", 67 "//media",
68 "//testing/gmock", 68 "//testing/gmock",
69 "//testing/gtest", 69 "//testing/gtest",
70 ] 70 ]
71 71
72 data = [ 72 data = [
73 "//media/test/data/", 73 "//media/test/data/",
74 ] 74 ]
75 75
76 # MultizoneBackendTest verifies rendering delay reported by the backend. 76 # MultizoneBackendTest verifies rendering delay reported by the backend.
77 # Since rendering delay is optional on video platforms, enable this test 77 if (supports_multizone) {
78 # on audio devices only.
79 if (is_cast_audio_only && !is_cast_desktop_build) {
80 sources += [ "backend/multizone_backend_unittest.cc" ] 78 sources += [ "backend/multizone_backend_unittest.cc" ]
81 } 79 }
82 } 80 }
OLDNEW
« no previous file with comments | « chromecast/chromecast.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698