| 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 source_set("logging") { | 5 import("//testing/test.gni") |
| 6 sources = [ | 6 |
| 7 "log_buffer.cc", | 7 test("input_events_lib_unittests") { |
| 8 "log_buffer.h", | 8 deps = [ |
| 9 "logging.cc", | 9 "//base", |
| 10 "logging.h", | 10 "//base/test:test_support", |
| 11 "//mojo/converters/input_events", |
| 12 "//testing/gtest", |
| 13 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 14 "//components/html_viewer:lib", |
| 11 ] | 15 ] |
| 12 | 16 |
| 13 deps = [ | 17 sources = [ |
| 14 "//base", | 18 "input_events_unittest.cc", |
| 15 ] | 19 ] |
| 16 } | 20 } |
| 17 | |
| 18 source_set("unit_tests") { | |
| 19 testonly = true | |
| 20 sources = [ | |
| 21 "logging_unittest.cc", | |
| 22 ] | |
| 23 | |
| 24 deps = [ | |
| 25 "//base/test:test_support", | |
| 26 "//testing/gtest", | |
| 27 ] | |
| 28 } | |
| OLD | NEW |