| OLD | NEW |
| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 'dependencies!': [ | 185 'dependencies!': [ |
| 186 'hid/hid.gyp:device_hid', | 186 'hid/hid.gyp:device_hid', |
| 187 'serial/serial.gyp:device_serial', | 187 'serial/serial.gyp:device_serial', |
| 188 'serial/serial.gyp:device_serial_test_util', | 188 'serial/serial.gyp:device_serial_test_util', |
| 189 ], | 189 ], |
| 190 'sources/': [ | 190 'sources/': [ |
| 191 ['exclude', '^serial/'], | 191 ['exclude', '^serial/'], |
| 192 ['exclude', '^hid/'], | 192 ['exclude', '^hid/'], |
| 193 ], | 193 ], |
| 194 }], | 194 }], |
| 195 ['use_dbus==0', { | 195 ['OS=="linux" and use_dbus==1', { |
| 196 'dependencies': [ |
| 197 '../dbus/dbus.gyp:dbus_test_support', |
| 198 ], |
| 199 }, { # OS != "linux" or use_dbus==0 |
| 196 'sources!': [ | 200 'sources!': [ |
| 197 'battery/battery_status_manager_linux_unittest.cc', | 201 'battery/battery_status_manager_linux_unittest.cc', |
| 198 ], | 202 ], |
| 199 }], | 203 }], |
| 200 ['OS=="win"', { | 204 ['OS=="win"', { |
| 201 'sources': [ | 205 'sources': [ |
| 202 'bluetooth/bluetooth_classic_win_fake.cc', | 206 'bluetooth/bluetooth_classic_win_fake.cc', |
| 203 'bluetooth/bluetooth_classic_win_fake.h', | 207 'bluetooth/bluetooth_classic_win_fake.h', |
| 204 'bluetooth/bluetooth_low_energy_win_fake.h', | 208 'bluetooth/bluetooth_low_energy_win_fake.h', |
| 205 'bluetooth/bluetooth_low_energy_win_fake.cc', | 209 'bluetooth/bluetooth_low_energy_win_fake.cc', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 '../build/isolate.gypi', | 281 '../build/isolate.gypi', |
| 278 ], | 282 ], |
| 279 'sources': [ | 283 'sources': [ |
| 280 'device_unittests.isolate', | 284 'device_unittests.isolate', |
| 281 ] | 285 ] |
| 282 } | 286 } |
| 283 ] | 287 ] |
| 284 }] | 288 }] |
| 285 ], | 289 ], |
| 286 } | 290 } |
| OLD | NEW |