| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |