Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(811)

Side by Side Diff: device/device.gyp

Issue 11276052: device: Build device_bluetooth target as static_library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': '<(library)', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../chrome/chrome_resources.gyp:chrome_strings', 14 '../chrome/chrome_resources.gyp:chrome_strings',
15 '../third_party/libxml/libxml.gyp:libxml', 15 '../third_party/libxml/libxml.gyp:libxml',
16 '../ui/ui.gyp:ui' 16 '../ui/ui.gyp:ui'
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'bluetooth/bluetooth_adapter.cc', 19 'bluetooth/bluetooth_adapter.cc',
20 'bluetooth/bluetooth_adapter.h', 20 'bluetooth/bluetooth_adapter.h',
21 'bluetooth/bluetooth_adapter_chromeos.cc', 21 'bluetooth/bluetooth_adapter_chromeos.cc',
22 'bluetooth/bluetooth_adapter_chromeos.h', 22 'bluetooth/bluetooth_adapter_chromeos.h',
(...skipping 23 matching lines...) Expand all
46 'dependencies': [ 46 'dependencies': [
47 '../build/linux/system.gyp:dbus', 47 '../build/linux/system.gyp:dbus',
48 '../chromeos/chromeos.gyp:chromeos', 48 '../chromeos/chromeos.gyp:chromeos',
49 '../dbus/dbus.gyp:dbus', 49 '../dbus/dbus.gyp:dbus',
50 ] 50 ]
51 }], 51 }],
52 ], 52 ],
53 }, 53 },
54 { 54 {
55 'target_name': 'device_bluetooth_mocks', 55 'target_name': 'device_bluetooth_mocks',
56 'type': '<(library)', 56 'type': 'static_library',
57 'dependencies': [ 57 'dependencies': [
58 'device_bluetooth', 58 'device_bluetooth',
59 '../testing/gmock.gyp:gmock', 59 '../testing/gmock.gyp:gmock',
60 ], 60 ],
61 'sources': [ 61 'sources': [
62 'bluetooth/test/mock_bluetooth_adapter.cc', 62 'bluetooth/test/mock_bluetooth_adapter.cc',
63 'bluetooth/test/mock_bluetooth_adapter.h', 63 'bluetooth/test/mock_bluetooth_adapter.h',
64 'bluetooth/test/mock_bluetooth_device.cc', 64 'bluetooth/test/mock_bluetooth_device.cc',
65 'bluetooth/test/mock_bluetooth_device.h', 65 'bluetooth/test/mock_bluetooth_device.h',
66 ], 66 ],
(...skipping 26 matching lines...) Expand all
93 'dependencies': [ 93 'dependencies': [
94 '../build/linux/system.gyp:dbus', 94 '../build/linux/system.gyp:dbus',
95 '../chromeos/chromeos.gyp:chromeos_test_support', 95 '../chromeos/chromeos.gyp:chromeos_test_support',
96 '../dbus/dbus.gyp:dbus', 96 '../dbus/dbus.gyp:dbus',
97 ] 97 ]
98 }], 98 }],
99 ], 99 ],
100 }, 100 },
101 ], 101 ],
102 } 102 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698