| 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 import("//testing/test.gni") | |
| 6 | |
| 7 source_set("message_pump") { | |
| 8 sources = [ | |
| 9 "handle_watcher.cc", | |
| 10 "handle_watcher.h", | |
| 11 "message_pump_mojo.cc", | |
| 12 "message_pump_mojo.h", | |
| 13 "message_pump_mojo_handler.h", | |
| 14 "time_helper.cc", | |
| 15 "time_helper.h", | |
| 16 ] | |
| 17 | |
| 18 deps = [ | |
| 19 "//base", | |
| 20 "//base/third_party/dynamic_annotations", | |
| 21 "//third_party/mojo/src/mojo/public/cpp/system", | |
| 22 ] | |
| 23 } | |
| OLD | NEW |