| 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 'target_name': 'device_bluetooth', | 11 'target_name': 'device_bluetooth', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
| 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 16 '../../net/net.gyp:net', | 16 '../../net/net.gyp:net', |
| 17 '../../third_party/libxml/libxml.gyp:libxml', | 17 '../../third_party/libxml/libxml.gyp:libxml', |
| 18 '../../ui/base/ui_base.gyp:ui_base', |
| 18 '../../ui/gfx/gfx.gyp:gfx', | 19 '../../ui/gfx/gfx.gyp:gfx', |
| 19 '../../ui/gfx/gfx.gyp:gfx_geometry', | 20 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 20 '../../ui/ui.gyp:ui', | |
| 21 'bluetooth_strings.gyp:device_bluetooth_strings', | 21 'bluetooth_strings.gyp:device_bluetooth_strings', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'bluetooth_adapter.cc', | 24 'bluetooth_adapter.cc', |
| 25 'bluetooth_adapter.h', | 25 'bluetooth_adapter.h', |
| 26 'bluetooth_adapter_chromeos.cc', | 26 'bluetooth_adapter_chromeos.cc', |
| 27 'bluetooth_adapter_chromeos.h', | 27 'bluetooth_adapter_chromeos.h', |
| 28 'bluetooth_adapter_factory.cc', | 28 'bluetooth_adapter_factory.cc', |
| 29 'bluetooth_adapter_factory.h', | 29 'bluetooth_adapter_factory.h', |
| 30 'bluetooth_adapter_mac.h', | 30 'bluetooth_adapter_mac.h', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 'test/mock_bluetooth_discovery_session.cc', | 126 'test/mock_bluetooth_discovery_session.cc', |
| 127 'test/mock_bluetooth_discovery_session.h', | 127 'test/mock_bluetooth_discovery_session.h', |
| 128 'test/mock_bluetooth_profile.cc', | 128 'test/mock_bluetooth_profile.cc', |
| 129 'test/mock_bluetooth_profile.h', | 129 'test/mock_bluetooth_profile.h', |
| 130 'test/mock_bluetooth_socket.cc', | 130 'test/mock_bluetooth_socket.cc', |
| 131 'test/mock_bluetooth_socket.h', | 131 'test/mock_bluetooth_socket.h', |
| 132 ], | 132 ], |
| 133 }, | 133 }, |
| 134 ], | 134 ], |
| 135 } | 135 } |
| OLD | NEW |