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

Side by Side Diff: device/device_tests.gyp

Issue 1502943003: Check use_dbus==1 when compiling dbus dependent bluetooth unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years 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/BUILD.gn ('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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'conditions': [ 89 'conditions': [
90 ['chromeos==1', { 90 ['chromeos==1', {
91 'dependencies': [ 91 'dependencies': [
92 '../chromeos/chromeos.gyp:chromeos_test_support', 92 '../chromeos/chromeos.gyp:chromeos_test_support',
93 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock', 93 '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
94 ], 94 ],
95 'sources!': [ 95 'sources!': [
96 'battery/battery_status_manager_linux_unittest.cc', 96 'battery/battery_status_manager_linux_unittest.cc',
97 ], 97 ],
98 }], 98 }],
99 ['chromeos==1 or OS=="linux"', { 99 ['(chromeos==1 or OS=="linux") and use_dbus==1', {
100 'dependencies': [ 100 'dependencies': [
101 '../build/linux/system.gyp:dbus', 101 '../build/linux/system.gyp:dbus',
102 '../dbus/dbus.gyp:dbus', 102 '../dbus/dbus.gyp:dbus',
103 ], 103 ],
104 'sources': [ 104 'sources': [
105 'bluetooth/bluetooth_adapter_profile_bluez_unittest.cc', 105 'bluetooth/bluetooth_adapter_profile_bluez_unittest.cc',
106 'bluetooth/bluetooth_advertisement_bluez_unittest.cc', 106 'bluetooth/bluetooth_advertisement_bluez_unittest.cc',
107 'bluetooth/bluetooth_audio_sink_bluez_unittest.cc', 107 'bluetooth/bluetooth_audio_sink_bluez_unittest.cc',
108 'bluetooth/bluetooth_bluez_unittest.cc', 108 'bluetooth/bluetooth_bluez_unittest.cc',
109 'bluetooth/bluetooth_gatt_bluez_unittest.cc', 109 'bluetooth/bluetooth_gatt_bluez_unittest.cc',
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 '../build/isolate.gypi', 253 '../build/isolate.gypi',
254 ], 254 ],
255 'sources': [ 255 'sources': [
256 'device_unittests.isolate', 256 'device_unittests.isolate',
257 ] 257 ]
258 } 258 }
259 ] 259 ]
260 }] 260 }]
261 ], 261 ],
262 } 262 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698