Remove implicit conversions from scoped_refptr to T* in media/
[chromium-blink-merge.git] / components / pairing.gypi
blob6feb729517bb1cecac1895178c63211ce97a36d7
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         '../net/net.gyp:net',
18       ],
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',
26         'pairing/controller_pairing_controller.cc',
27         'pairing/controller_pairing_controller.h',
28         'pairing/fake_controller_pairing_controller.cc',
29         'pairing/fake_controller_pairing_controller.h',
30         'pairing/fake_host_pairing_controller.cc',
31         'pairing/fake_host_pairing_controller.h',
32         'pairing/host_pairing_controller.cc',
33         'pairing/host_pairing_controller.h',
34         'pairing/message_buffer.cc',
35         'pairing/message_buffer.h',
36         'pairing/proto_decoder.cc',
37         'pairing/proto_decoder.h',
38       ],
39     },
40     {
41       # Protobuf compiler / generator for the pairing api protocol buffer.
42       'target_name': 'pairing_api_proto',
43       'type': 'static_library',
44       'sources': [ 'pairing/pairing_api.proto' ],
45       'variables': {
46         'proto_in_dir': 'pairing',
47         'proto_out_dir': 'components/pairing',
48       },
49       'includes': [ '../build/protoc.gypi' ]
50     },
51   ],