| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 source_set("pairing") { | 7 source_set("pairing") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bluetooth_controller_pairing_controller.cc", | 9 "bluetooth_controller_pairing_controller.cc", |
| 10 "bluetooth_controller_pairing_controller.h", | 10 "bluetooth_controller_pairing_controller.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "proto_decoder.h", | 26 "proto_decoder.h", |
| 27 "shark_connection_listener.cc", | 27 "shark_connection_listener.cc", |
| 28 "shark_connection_listener.h", | 28 "shark_connection_listener.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 ":proto", | 32 ":proto", |
| 33 "//base", | 33 "//base", |
| 34 "//chromeos", | 34 "//chromeos", |
| 35 "//device/bluetooth", | 35 "//device/bluetooth", |
| 36 "//device/hid", |
| 36 "//net", | 37 "//net", |
| 37 ] | 38 ] |
| 38 } | 39 } |
| 39 | 40 |
| 40 source_set("unit_tests") { | 41 source_set("unit_tests") { |
| 41 testonly = true | 42 testonly = true |
| 42 sources = [ | 43 sources = [ |
| 43 "message_buffer_unittest.cc", | 44 "message_buffer_unittest.cc", |
| 44 ] | 45 ] |
| 45 | 46 |
| 46 deps = [ | 47 deps = [ |
| 47 ":pairing", | 48 ":pairing", |
| 48 "//net", | 49 "//net", |
| 49 "//testing/gtest", | 50 "//testing/gtest", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| 52 | 53 |
| 53 proto_library("proto") { | 54 proto_library("proto") { |
| 54 sources = [ | 55 sources = [ |
| 55 "pairing_api.proto", | 56 "pairing_api.proto", |
| 56 ] | 57 ] |
| 57 } | 58 } |
| OLD | NEW |