Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: mojo/converters/input_events/tests/BUILD.gn

Issue 1313353010: Overhaul Mandoline event transport code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698