Roll src/third_party/WebKit e2f1087:c936ac9 (svn 200537:200538)
[chromium-blink-merge.git] / components / device_event_log / BUILD.gn
blob63e07525b699f86143dbd014132c1f0f56e8ab90
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.
5 component("device_event_log") {
6   sources = [
7     "device_event_log.cc",
8     "device_event_log.h",
9     "device_event_log_impl.cc",
10     "device_event_log_impl.h",
11   ]
13   defines = [ "DEVICE_EVENT_LOG_IMPLEMENTATION" ]
15   deps = [
16     "//base",
17     "//net",
18   ]
21 source_set("unit_tests") {
22   testonly = true
23   sources = [
24     "device_event_log_impl_unittest.cc",
25   ]
27   deps = [
28     ":device_event_log",
29     "//testing/gtest",
30   ]