| 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("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 ] | 63 ] |
| 64 } | 64 } |
| 65 | 65 |
| 66 # GYP target: chromecast/media/media.gyp:chromecast_alsa_features | 66 # GYP target: chromecast/media/media.gyp:chromecast_alsa_features |
| 67 buildflag_header("alsa_features") { | 67 buildflag_header("alsa_features") { |
| 68 header = "alsa_features.h" | 68 header = "alsa_features.h" |
| 69 | 69 |
| 70 flags = [ "ALSA_MONOTONIC_RAW_TSTAMPS=$use_alsa_monotonic_raw_tstamps" ] | 70 flags = [ "ALSA_MONOTONIC_RAW_TSTAMPS=$use_alsa_monotonic_raw_tstamps" ] |
| 71 } | 71 } |
| 72 | 72 |
| 73 # GYP target: chromecast/media/media.gyp:alsa_cma_backend_unittests | 73 # GYP target: chromecast/media/media.gyp:cast_alsa_cma_backend_unittests |
| 74 test("alsa_cma_backend_unittests") { | 74 test("cast_alsa_cma_backend_unittests") { |
| 75 sources = [ | 75 sources = [ |
| 76 "stream_mixer_alsa_unittest.cc", | 76 "stream_mixer_alsa_unittest.cc", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 deps = [ | 79 deps = [ |
| 80 ":test_support", | 80 ":test_support", |
| 81 "//base", | 81 "//base", |
| 82 "//base/test:run_all_unittests", | 82 "//base/test:run_all_unittests", |
| 83 "//chromecast/media/base", | 83 "//chromecast/media/base", |
| 84 "//chromecast/media/base:libcast_media_1.0_default_core", | 84 "//chromecast/media/base:libcast_media_1.0_default_core", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 101 public_deps = [ | 101 public_deps = [ |
| 102 ":alsa_cma_backend", | 102 ":alsa_cma_backend", |
| 103 ] | 103 ] |
| 104 | 104 |
| 105 deps = [ | 105 deps = [ |
| 106 "//base", | 106 "//base", |
| 107 "//media", | 107 "//media", |
| 108 "//testing/gmock", | 108 "//testing/gmock", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| OLD | NEW |