diff options
Diffstat (limited to 'components/proximity_auth/logging/BUILD.gn')
-rw-r--r-- | components/proximity_auth/logging/BUILD.gn | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/components/proximity_auth/logging/BUILD.gn b/components/proximity_auth/logging/BUILD.gn new file mode 100644 index 0000000..dbc8045 --- /dev/null +++ b/components/proximity_auth/logging/BUILD.gn @@ -0,0 +1,28 @@ +# Copyright 2015 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +source_set("logging") { + sources = [ + "log_buffer.cc", + "log_buffer.h", + "logging.cc", + "logging.h", + ] + + deps = [ + "//base", + ] +} + +source_set("unit_tests") { + testonly = true + sources = [ + "logging_unittest.cc", + ] + + deps = [ + "//base/test:test_support", + "//testing/gtest", + ] +} |