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

Side by Side Diff: device/device_tests.gyp

Issue 2066503002: Implement device::BatteryStatus support for UPower daemon 0.99.x (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixup! Implement device::BatteryStatus support for UPower daemon 0.99.x Created 4 years, 6 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
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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'dependencies!': [ 179 'dependencies!': [
180 'hid/hid.gyp:device_hid', 180 'hid/hid.gyp:device_hid',
181 'serial/serial.gyp:device_serial', 181 'serial/serial.gyp:device_serial',
182 'serial/serial.gyp:device_serial_test_util', 182 'serial/serial.gyp:device_serial_test_util',
183 ], 183 ],
184 'sources/': [ 184 'sources/': [
185 ['exclude', '^serial/'], 185 ['exclude', '^serial/'],
186 ['exclude', '^hid/'], 186 ['exclude', '^hid/'],
187 ], 187 ],
188 }], 188 }],
189 ['use_dbus==0', { 189 ['OS=="linux" and use_dbus==1', {
190 'dependencies': [
191 '../dbus/dbus.gyp:dbus_test_support',
192 ],
193 }, { # OS != "linux" or use_dbus==0
190 'sources!': [ 194 'sources!': [
191 'battery/battery_status_manager_linux_unittest.cc', 195 'battery/battery_status_manager_linux_unittest.cc',
192 ], 196 ],
193 }], 197 }],
194 ['OS=="win"', { 198 ['OS=="win"', {
195 'sources': [ 199 'sources': [
196 'bluetooth/bluetooth_classic_win_fake.cc', 200 'bluetooth/bluetooth_classic_win_fake.cc',
197 'bluetooth/bluetooth_classic_win_fake.h', 201 'bluetooth/bluetooth_classic_win_fake.h',
198 'bluetooth/bluetooth_low_energy_win_fake.h', 202 'bluetooth/bluetooth_low_energy_win_fake.h',
199 'bluetooth/bluetooth_low_energy_win_fake.cc', 203 'bluetooth/bluetooth_low_energy_win_fake.cc',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 '../build/isolate.gypi', 275 '../build/isolate.gypi',
272 ], 276 ],
273 'sources': [ 277 'sources': [
274 'device_unittests.isolate', 278 'device_unittests.isolate',
275 ] 279 ]
276 } 280 }
277 ] 281 ]
278 }] 282 }]
279 ], 283 ],
280 } 284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698