| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("copresence") { | 5 source_set("copresence") { |
| 6 sources = [ | 6 sources = [ |
| 7 "copresence_manager_impl.cc", | 7 "copresence_manager_impl.cc", |
| 8 "copresence_state_impl.cc", | 8 "copresence_state_impl.cc", |
| 9 "copresence_state_impl.h", | 9 "copresence_state_impl.h", |
| 10 "copresence_switches.cc", | 10 "copresence_switches.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "timed_map.h", | 34 "timed_map.h", |
| 35 "tokens.cc", | 35 "tokens.cc", |
| 36 "tokens.h", | 36 "tokens.h", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//components/audio_modem", | 41 "//components/audio_modem", |
| 42 "//components/copresence/proto", | 42 "//components/copresence/proto", |
| 43 "//components/gcm_driver", | 43 "//components/gcm_driver", |
| 44 "//content", | |
| 45 "//google_apis", | 44 "//google_apis", |
| 46 "//media", | 45 "//media", |
| 47 "//media:shared_memory_support", | 46 "//media:shared_memory_support", |
| 48 "//net", | 47 "//net", |
| 49 ] | 48 ] |
| 50 } | 49 } |
| 51 | 50 |
| 52 source_set("test_support") { | 51 source_set("test_support") { |
| 53 testonly = true | 52 testonly = true |
| 54 sources = [ | 53 sources = [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 79 "//base", | 78 "//base", |
| 80 "//base/test:test_support", | 79 "//base/test:test_support", |
| 81 "//components/audio_modem:test_support", | 80 "//components/audio_modem:test_support", |
| 82 "//components/copresence/proto", | 81 "//components/copresence/proto", |
| 83 "//components/gcm_driver:test_support", | 82 "//components/gcm_driver:test_support", |
| 84 "//net:test_support", | 83 "//net:test_support", |
| 85 "//testing/gmock", | 84 "//testing/gmock", |
| 86 "//testing/gtest", | 85 "//testing/gtest", |
| 87 ] | 86 ] |
| 88 } | 87 } |
| OLD | NEW |