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

Side by Side Diff: device/device_tests.gyp

Issue 1216583003: Adding Hashed Address to BluetoothLowEnergyDeviceMac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@timeinfo
Patch Set: agl comments Created 5 years, 5 months 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
« no previous file with comments | « device/bluetooth/bluetooth_low_energy_device_mac.mm ('k') | 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 {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'device_bluetooth_test_java', 106 'device_bluetooth_test_java',
107 'device_bluetooth_test_jni_headers', 107 'device_bluetooth_test_jni_headers',
108 ], 108 ],
109 'sources/': [ 109 'sources/': [
110 ['exclude', '(^|/)hid'], 110 ['exclude', '(^|/)hid'],
111 ['exclude', '(^|/)serial'], 111 ['exclude', '(^|/)serial'],
112 ['exclude', '(^|/)usb'], 112 ['exclude', '(^|/)usb'],
113 ], 113 ],
114 }], 114 }],
115 ['OS=="mac"', { 115 ['OS=="mac"', {
116 'dependencies': [
117 '../third_party/ocmock/ocmock.gyp:ocmock',
118 ],
116 'link_settings': { 119 'link_settings': {
117 'libraries': [ 120 'libraries': [
118 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', 121 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
119 ], 122 ],
120 }, 123 },
124 'xcode_settings' : {
125 'OTHER_LDFLAGS' : [
126 '-ObjC',
127 ],
128 },
121 }], 129 }],
122 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { 130 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
123 'conditions': [ 131 'conditions': [
124 ['use_allocator!="none"', { 132 ['use_allocator!="none"', {
125 'dependencies': [ 133 'dependencies': [
126 '../base/allocator/allocator.gyp:allocator', 134 '../base/allocator/allocator.gyp:allocator',
127 ], 135 ],
128 }], 136 }],
129 ], 137 ],
130 }], 138 }],
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 '../build/isolate.gypi', 215 '../build/isolate.gypi',
208 ], 216 ],
209 'sources': [ 217 'sources': [
210 'device_unittests.isolate', 218 'device_unittests.isolate',
211 ] 219 ]
212 } 220 }
213 ] 221 ]
214 }] 222 }]
215 ], 223 ],
216 } 224 }
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_low_energy_device_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698