| 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 14 matching lines...) Expand all Loading... |
| 25 "proto_decoder.cc", | 25 "proto_decoder.cc", |
| 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 "//content/public/browser", |
| 35 "//device/bluetooth", | 36 "//device/bluetooth", |
| 37 "//device/hid", |
| 36 "//net", | 38 "//net", |
| 37 ] | 39 ] |
| 38 } | 40 } |
| 39 | 41 |
| 40 source_set("unit_tests") { | 42 source_set("unit_tests") { |
| 41 testonly = true | 43 testonly = true |
| 42 sources = [ | 44 sources = [ |
| 43 "message_buffer_unittest.cc", | 45 "message_buffer_unittest.cc", |
| 44 ] | 46 ] |
| 45 | 47 |
| 46 deps = [ | 48 deps = [ |
| 47 ":pairing", | 49 ":pairing", |
| 48 "//net", | 50 "//net", |
| 49 "//testing/gtest", | 51 "//testing/gtest", |
| 50 ] | 52 ] |
| 51 } | 53 } |
| 52 | 54 |
| 53 proto_library("proto") { | 55 proto_library("proto") { |
| 54 sources = [ | 56 sources = [ |
| 55 "pairing_api.proto", | 57 "pairing_api.proto", |
| 56 ] | 58 ] |
| 57 } | 59 } |
| OLD | NEW |