| 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("common") { | 8 source_set("common") { |
| 9 sources = [ | 9 sources = [ |
| 10 "binding_set.h", | 10 "binding_set.h", |
| 11 "interface_ptr_set.h", | 11 "interface_ptr_set.h", |
| 12 "strong_binding_set.h", | 12 "strong_binding_set.h", |
| 13 "task_tracker.cc", | |
| 14 "task_tracker.h", | |
| 15 ] | 13 ] |
| 16 | 14 |
| 17 deps = [ | 15 deps = [ |
| 18 "//base", | 16 "//base", |
| 19 "//mojo/public/cpp/bindings", | 17 "//mojo/public/cpp/bindings", |
| 20 ] | 18 ] |
| 21 } | 19 } |
| 22 | 20 |
| 23 source_set("tests") { | 21 source_set("tests") { |
| 24 testonly = true | 22 testonly = true |
| 25 | 23 |
| 26 sources = [ | 24 sources = [ |
| 27 "binding_set_unittest.cc", | 25 "binding_set_unittest.cc", |
| 28 "callback_binding_unittest.cc", | 26 "callback_binding_unittest.cc", |
| 29 "interface_ptr_set_unittest.cc", | 27 "interface_ptr_set_unittest.cc", |
| 30 "strong_binding_set_unittest.cc", | 28 "strong_binding_set_unittest.cc", |
| 31 "task_tracker_unittest.cc", | |
| 32 ] | 29 ] |
| 33 | 30 |
| 34 deps = [ | 31 deps = [ |
| 35 ":common", | 32 ":common", |
| 36 ":test_interfaces", | 33 ":test_interfaces", |
| 37 "//base", | 34 "//base", |
| 38 "//mojo/message_pump", | 35 "//mojo/message_pump", |
| 39 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
| 40 "//mojo/public/cpp/bindings:callback", | 37 "//mojo/public/cpp/bindings:callback", |
| 41 "//mojo/public/cpp/system", | 38 "//mojo/public/cpp/system", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 71 "tracing_impl.h", | 68 "tracing_impl.h", |
| 72 ] | 69 ] |
| 73 | 70 |
| 74 deps = [ | 71 deps = [ |
| 75 "//base", | 72 "//base", |
| 76 "//mojo/public/cpp/application", | 73 "//mojo/public/cpp/application", |
| 77 "//mojo/public/cpp/bindings", | 74 "//mojo/public/cpp/bindings", |
| 78 "//mojo/services/tracing/interfaces", | 75 "//mojo/services/tracing/interfaces", |
| 79 ] | 76 ] |
| 80 } | 77 } |
| OLD | NEW |