| 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/gfx/gfx.gyp:gfx', | |
| 19 '../../ui/ui.gyp:ui', | 18 '../../ui/ui.gyp:ui', |
| 20 'bluetooth_strings.gyp:device_bluetooth_strings', | 19 'bluetooth_strings.gyp:device_bluetooth_strings', |
| 21 ], | 20 ], |
| 22 'sources': [ | 21 'sources': [ |
| 23 'bluetooth_adapter.cc', | 22 'bluetooth_adapter.cc', |
| 24 'bluetooth_adapter.h', | 23 'bluetooth_adapter.h', |
| 25 'bluetooth_adapter_chromeos.cc', | 24 'bluetooth_adapter_chromeos.cc', |
| 26 'bluetooth_adapter_chromeos.h', | 25 'bluetooth_adapter_chromeos.h', |
| 27 'bluetooth_adapter_factory.cc', | 26 'bluetooth_adapter_factory.cc', |
| 28 'bluetooth_adapter_factory.h', | 27 'bluetooth_adapter_factory.h', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'test/mock_bluetooth_device.cc', | 112 'test/mock_bluetooth_device.cc', |
| 114 'test/mock_bluetooth_device.h', | 113 'test/mock_bluetooth_device.h', |
| 115 'test/mock_bluetooth_profile.cc', | 114 'test/mock_bluetooth_profile.cc', |
| 116 'test/mock_bluetooth_profile.h', | 115 'test/mock_bluetooth_profile.h', |
| 117 'test/mock_bluetooth_socket.cc', | 116 'test/mock_bluetooth_socket.cc', |
| 118 'test/mock_bluetooth_socket.h', | 117 'test/mock_bluetooth_socket.h', |
| 119 ], | 118 ], |
| 120 }, | 119 }, |
| 121 ], | 120 ], |
| 122 } | 121 } |
| OLD | NEW |