| 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 group("media") { | 9 group("media") { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "//chromecast/base/metrics:test_support", | 37 "//chromecast/base/metrics:test_support", |
| 38 "//chromecast/media/cma:test_support", | 38 "//chromecast/media/cma:test_support", |
| 39 "//chromecast/public", | 39 "//chromecast/public", |
| 40 "//media", | 40 "//media", |
| 41 "//media/audio:test_support", | 41 "//media/audio:test_support", |
| 42 "//media/base:test_support", | 42 "//media/base:test_support", |
| 43 "//testing/gmock", | 43 "//testing/gmock", |
| 44 "//testing/gtest", | 44 "//testing/gtest", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 if (!is_android) { | 47 if (is_cast_using_cma_backend) { |
| 48 deps += [ "//chromecast/media/cma:unittests" ] | 48 deps += [ "//chromecast/media/cma:unittests" ] |
| 49 if (is_android) { |
| 50 shard_timeout = 300 |
| 51 } |
| 49 } | 52 } |
| 50 } | 53 } |
| OLD | NEW |