| 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 source_set("lib") { | 7 source_set("lib") { |
| 8 sources = [ | 8 sources = [ |
| 9 "event.cc", | 9 "event.cc", |
| 10 "event.h", | 10 "event.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 testonly = true | 45 testonly = true |
| 46 | 46 |
| 47 sources = [ | 47 sources = [ |
| 48 "event_unittest.cc", | 48 "event_unittest.cc", |
| 49 "measurements_unittest.cc", | 49 "measurements_unittest.cc", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 ":lib", | 53 ":lib", |
| 54 "//base", |
| 54 "//mojo/application", | 55 "//mojo/application", |
| 55 "//mojo/application:test_support", | 56 "//mojo/application:test_support", |
| 56 "//mojo/public/cpp/bindings:callback", | 57 "//mojo/public/cpp/bindings:callback", |
| 57 "//testing/gtest", | 58 "//testing/gtest", |
| 58 ] | 59 ] |
| 59 } | 60 } |
| OLD | NEW |