OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("message_pump") { |
| 6 sources = [ |
| 7 "handle_watcher.cc", |
| 8 "handle_watcher.h", |
| 9 "message_pump_mojo.cc", |
| 10 "message_pump_mojo.h", |
| 11 "message_pump_mojo_handler.h", |
| 12 "time_helper.cc", |
| 13 "time_helper.h", |
| 14 ] |
| 15 |
| 16 deps = [ |
| 17 "//base", |
| 18 "//third_party/mojo/src/mojo/public/cpp/system", |
| 19 ] |
| 20 } |
| 21 |
| 22 source_set("tests") { |
| 23 testonly = true |
| 24 |
| 25 sources = [ |
| 26 "handle_watcher_unittest.cc", |
| 27 "message_pump_mojo_unittest.cc", |
| 28 ] |
| 29 |
| 30 deps = [ |
| 31 ":message_pump", |
| 32 "//base", |
| 33 "//base/test:test_support", |
| 34 "//base:message_loop_tests", |
| 35 "//third_party/mojo/src/mojo/public/cpp/system", |
| 36 "//third_party/mojo/src/mojo/public/cpp/test_support:test_utils", |
| 37 "//testing/gtest", |
| 38 ] |
| 39 } |
OLD | NEW |