OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 # GN version: //device/bluetooth | 11 # GN version: //device/bluetooth |
12 'target_name': 'device_bluetooth', | 12 'target_name': 'device_bluetooth', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', | |
17 '../../net/net.gyp:net', | 16 '../../net/net.gyp:net', |
18 '../../third_party/libxml/libxml.gyp:libxml', | |
19 '../../ui/base/ui_base.gyp:ui_base', | 17 '../../ui/base/ui_base.gyp:ui_base', |
armansito
2014/09/26 04:10:39
What do we use ui_base for? Should this also be re
Ilya Sherman
2014/09/26 04:29:21
Reading localized strings. I really wish there we
| |
20 '../../ui/gfx/gfx.gyp:gfx', | |
21 '../../ui/gfx/gfx.gyp:gfx_geometry', | |
22 'bluetooth_strings.gyp:device_bluetooth_strings', | 18 'bluetooth_strings.gyp:device_bluetooth_strings', |
23 ], | 19 ], |
24 'sources': [ | 20 'sources': [ |
25 # Note: file list duplicated in GN build. | 21 # Note: file list duplicated in GN build. |
26 'bluetooth_adapter.cc', | 22 'bluetooth_adapter.cc', |
27 'bluetooth_adapter.h', | 23 'bluetooth_adapter.h', |
28 'bluetooth_adapter_chromeos.cc', | 24 'bluetooth_adapter_chromeos.cc', |
29 'bluetooth_adapter_chromeos.h', | 25 'bluetooth_adapter_chromeos.h', |
30 'bluetooth_adapter_factory.cc', | 26 'bluetooth_adapter_factory.cc', |
31 'bluetooth_adapter_factory.h', | 27 'bluetooth_adapter_factory.h', |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
158 'test/mock_bluetooth_gatt_notify_session.cc', | 154 'test/mock_bluetooth_gatt_notify_session.cc', |
159 'test/mock_bluetooth_gatt_notify_session.h', | 155 'test/mock_bluetooth_gatt_notify_session.h', |
160 'test/mock_bluetooth_gatt_service.cc', | 156 'test/mock_bluetooth_gatt_service.cc', |
161 'test/mock_bluetooth_gatt_service.h', | 157 'test/mock_bluetooth_gatt_service.h', |
162 'test/mock_bluetooth_socket.cc', | 158 'test/mock_bluetooth_socket.cc', |
163 'test/mock_bluetooth_socket.h', | 159 'test/mock_bluetooth_socket.h', |
164 ], | 160 ], |
165 }, | 161 }, |
166 ], | 162 ], |
167 } | 163 } |
OLD | NEW |