| 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 "pairing/bluetooth_controller_pairing_controller.cc", |
| 10 "pairing/bluetooth_controller_pairing_controller.h", |
| 11 "pairing/bluetooth_host_pairing_controller.cc", |
| 12 "pairing/bluetooth_host_pairing_controller.h", |
| 13 "pairing/bluetooth_pairing_constants.cc", |
| 14 "pairing/bluetooth_pairing_constants.h", |
| 15 "pairing/controller_pairing_controller.cc", |
| 16 "pairing/controller_pairing_controller.h", |
| 9 "pairing/fake_controller_pairing_controller.cc", | 17 "pairing/fake_controller_pairing_controller.cc", |
| 10 "pairing/fake_controller_pairing_controller.h", | 18 "pairing/fake_controller_pairing_controller.h", |
| 11 "pairing/fake_host_pairing_controller.cc", | 19 "pairing/fake_host_pairing_controller.cc", |
| 12 "pairing/fake_host_pairing_controller.h", | 20 "pairing/fake_host_pairing_controller.h", |
| 13 "pairing/controller_pairing_controller.cc", | |
| 14 "pairing/controller_pairing_controller.h", | |
| 15 "pairing/host_pairing_controller.cc", | 21 "pairing/host_pairing_controller.cc", |
| 16 "pairing/host_pairing_controller.h", | 22 "pairing/host_pairing_controller.h", |
| 17 "pairing/message_buffer.cc", | 23 "pairing/message_buffer.cc", |
| 18 "pairing/message_buffer.h", | 24 "pairing/message_buffer.h", |
| 19 "pairing/proto_decoder.cc", | 25 "pairing/proto_decoder.cc", |
| 20 "pairing/proto_decoder.h", | 26 "pairing/proto_decoder.h", |
| 21 ] | 27 ] |
| 22 | 28 |
| 23 deps = [ | 29 deps = [ |
| 24 "//base", | 30 "//base", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 38 ] | 44 ] |
| 39 } | 45 } |
| 40 | 46 |
| 41 proto_library("proto") { | 47 proto_library("proto") { |
| 42 sources = [ | 48 sources = [ |
| 43 "pairing_api.proto", | 49 "pairing_api.proto", |
| 44 ] | 50 ] |
| 45 'proto_in_dir' = 'pairing' | 51 'proto_in_dir' = 'pairing' |
| 46 'proto_out_dir' = 'components/pairing' | 52 'proto_out_dir' = 'components/pairing' |
| 47 } | 53 } |
| OLD | NEW |