| 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 source_set("audio_modem") { | 5 source_set("audio_modem") { |
| 6 sources = [ | 6 sources = [ |
| 7 "audio_modem_switches.cc", | 7 "audio_modem_switches.cc", |
| 8 "audio_modem_switches.h", | 8 "audio_modem_switches.h", |
| 9 "audio_player.h", | 9 "audio_player.h", |
| 10 "audio_player_impl.cc", | 10 "audio_player_impl.cc", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "audio_player_unittest.cc", | 56 "audio_player_unittest.cc", |
| 57 "audio_recorder_unittest.cc", | 57 "audio_recorder_unittest.cc", |
| 58 "modem_unittest.cc", | 58 "modem_unittest.cc", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 61 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 ":test_support", | 64 ":test_support", |
| 65 "//base", | 65 "//base", |
| 66 "//base/test:test_support", |
| 66 "//content/test:test_support", | 67 "//content/test:test_support", |
| 67 "//media", | 68 "//media", |
| 68 "//media:shared_memory_support", | 69 "//media:shared_memory_support", |
| 69 "//testing/gtest", | 70 "//testing/gtest", |
| 70 ] | 71 ] |
| 71 } | 72 } |
| OLD | NEW |