Add diagnostics_writer.cc to the list of files allowed to printf.
[chromium-blink-merge.git] / components / pairing.gypi
blobb6c00ff99248e391d443d9d298f4cd27065dc099
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
3 # found in the LICENSE file.
6   'targets': [
7     {
8       'target_name': 'pairing',
9       'type': 'static_library',
10       'include_dirs': [
11         '..',
12       ],
13       'dependencies': [
14         'pairing_api_proto',
15         '../base/base.gyp:base',
16         '../device/bluetooth/bluetooth.gyp:device_bluetooth',
17       ],
18       'sources': [
19         'pairing/fake_controller_pairing_controller.cc',
20         'pairing/fake_controller_pairing_controller.h',
21         'pairing/fake_host_pairing_controller.cc',
22         'pairing/fake_host_pairing_controller.h',
23         'pairing/controller_pairing_controller.cc',
24         'pairing/controller_pairing_controller.h',
25         'pairing/host_pairing_controller.cc',
26         'pairing/host_pairing_controller.h',
27       ],
28     },
29     {
30       # Protobuf compiler / generator for the pairing api protocol buffer.
31       'target_name': 'pairing_api_proto',
32       'type': 'static_library',
33       'sources': [ 'pairing/pairing_api.proto' ],
34       'variables': {
35         'proto_in_dir': 'pairing',
36         'proto_out_dir': 'components/pairing',
37       },
38       'includes': [ '../build/protoc.gypi' ]
39     },
40   ],