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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 '../base/allocator/allocator.gyp:allocator', | 76 '../base/allocator/allocator.gyp:allocator', |
77 ], | 77 ], |
78 }], | 78 }], |
79 ], | 79 ], |
80 }], | 80 }], |
81 ['OS=="linux" and use_udev==0', { | 81 ['OS=="linux" and use_udev==0', { |
82 # Udev is the only Linux implementation. If we're compiling without | 82 # Udev is the only Linux implementation. If we're compiling without |
83 # Udev, disable these unittests. | 83 # Udev, disable these unittests. |
84 'dependencies!': [ | 84 'dependencies!': [ |
85 'hid/hid.gyp:device_hid', | 85 'hid/hid.gyp:device_hid', |
| 86 'serial/serial.gyp:device_serial', |
| 87 'serial/serial.gyp:device_serial_test_util', |
86 ], | 88 ], |
87 'sources/': [ | 89 'sources/': [ |
| 90 ['exclude', '^serial/'], |
88 ['exclude', '^hid/'], | 91 ['exclude', '^hid/'], |
89 ], | 92 ], |
90 }], | 93 }], |
91 ], | 94 ], |
92 }, | 95 }, |
93 ], | 96 ], |
94 } | 97 } |
OLD | NEW |