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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'pairing', | 8 'target_name': 'pairing', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 '..', | 11 '..', |
12 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 'pairing_api_proto', | 14 'pairing_api_proto', |
15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
16 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 16 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
17 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
| 20 'pairing/bluetooth_controller_pairing_controller.cc', |
| 21 'pairing/bluetooth_controller_pairing_controller.h', |
| 22 'pairing/bluetooth_host_pairing_controller.cc', |
| 23 'pairing/bluetooth_host_pairing_controller.h', |
| 24 'pairing/bluetooth_pairing_constants.cc', |
| 25 'pairing/bluetooth_pairing_constants.h', |
20 'pairing/controller_pairing_controller.cc', | 26 'pairing/controller_pairing_controller.cc', |
21 'pairing/controller_pairing_controller.h', | 27 'pairing/controller_pairing_controller.h', |
22 'pairing/fake_controller_pairing_controller.cc', | 28 'pairing/fake_controller_pairing_controller.cc', |
23 'pairing/fake_controller_pairing_controller.h', | 29 'pairing/fake_controller_pairing_controller.h', |
24 'pairing/fake_host_pairing_controller.cc', | 30 'pairing/fake_host_pairing_controller.cc', |
25 'pairing/fake_host_pairing_controller.h', | 31 'pairing/fake_host_pairing_controller.h', |
26 'pairing/host_pairing_controller.cc', | 32 'pairing/host_pairing_controller.cc', |
27 'pairing/host_pairing_controller.h', | 33 'pairing/host_pairing_controller.h', |
28 'pairing/message_buffer.cc', | 34 'pairing/message_buffer.cc', |
29 'pairing/message_buffer.h', | 35 'pairing/message_buffer.h', |
30 'pairing/proto_decoder.cc', | 36 'pairing/proto_decoder.cc', |
31 'pairing/proto_decoder.h', | 37 'pairing/proto_decoder.h', |
32 ], | 38 ], |
33 }, | 39 }, |
34 { | 40 { |
35 # Protobuf compiler / generator for the pairing api protocol buffer. | 41 # Protobuf compiler / generator for the pairing api protocol buffer. |
36 'target_name': 'pairing_api_proto', | 42 'target_name': 'pairing_api_proto', |
37 'type': 'static_library', | 43 'type': 'static_library', |
38 'sources': [ 'pairing/pairing_api.proto' ], | 44 'sources': [ 'pairing/pairing_api.proto' ], |
39 'variables': { | 45 'variables': { |
40 'proto_in_dir': 'pairing', | 46 'proto_in_dir': 'pairing', |
41 'proto_out_dir': 'components/pairing', | 47 'proto_out_dir': 'components/pairing', |
42 }, | 48 }, |
43 'includes': [ '../build/protoc.gypi' ] | 49 'includes': [ '../build/protoc.gypi' ] |
44 }, | 50 }, |
45 ], | 51 ], |
46 } | 52 } |
OLD | NEW |