| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 'hid/test_report_descriptors.cc', | 68 'hid/test_report_descriptors.cc', |
| 69 'hid/test_report_descriptors.h', | 69 'hid/test_report_descriptors.h', |
| 70 'nfc/nfc_chromeos_unittest.cc', | 70 'nfc/nfc_chromeos_unittest.cc', |
| 71 'nfc/nfc_ndef_record_unittest.cc', | 71 'nfc/nfc_ndef_record_unittest.cc', |
| 72 'serial/data_sink_unittest.cc', | 72 'serial/data_sink_unittest.cc', |
| 73 'serial/data_source_unittest.cc', | 73 'serial/data_source_unittest.cc', |
| 74 'serial/serial_connection_unittest.cc', | 74 'serial/serial_connection_unittest.cc', |
| 75 "serial/serial_io_handler_posix_unittest.cc", | 75 "serial/serial_io_handler_posix_unittest.cc", |
| 76 'serial/serial_service_unittest.cc', | 76 'serial/serial_service_unittest.cc', |
| 77 'test/run_all_unittests.cc', | 77 'test/run_all_unittests.cc', |
| 78 'test/test_device_client.cc', |
| 79 'test/test_device_client.h', |
| 78 'test/usb_test_gadget_impl.cc', | 80 'test/usb_test_gadget_impl.cc', |
| 79 'usb/usb_context_unittest.cc', | 81 'usb/usb_context_unittest.cc', |
| 80 'usb/usb_descriptors_unittest.cc', | 82 'usb/usb_descriptors_unittest.cc', |
| 81 'usb/usb_device_filter_unittest.cc', | 83 'usb/usb_device_filter_unittest.cc', |
| 82 'usb/usb_device_handle_unittest.cc', | 84 'usb/usb_device_handle_unittest.cc', |
| 83 'usb/usb_ids_unittest.cc', | 85 'usb/usb_ids_unittest.cc', |
| 84 'usb/usb_service_unittest.cc', | 86 'usb/usb_service_unittest.cc', |
| 85 'usb/webusb_descriptors_unittest.cc', | 87 'usb/webusb_descriptors_unittest.cc', |
| 86 ], | 88 ], |
| 87 'conditions': [ | 89 'conditions': [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 109 'dependencies': [ | 111 'dependencies': [ |
| 110 '../testing/android/native_test.gyp:native_test_native_code', | 112 '../testing/android/native_test.gyp:native_test_native_code', |
| 111 'device_bluetooth_test_java', | 113 'device_bluetooth_test_java', |
| 112 'device_bluetooth_test_jni_headers', | 114 'device_bluetooth_test_jni_headers', |
| 113 ], | 115 ], |
| 114 'sources/': [ | 116 'sources/': [ |
| 115 ['exclude', '(^|/)hid'], | 117 ['exclude', '(^|/)hid'], |
| 116 ['exclude', '(^|/)serial'], | 118 ['exclude', '(^|/)serial'], |
| 117 ['exclude', '(^|/)usb'], | 119 ['exclude', '(^|/)usb'], |
| 118 ], | 120 ], |
| 121 'sources!': [ |
| 122 'test/test_device_client.cc', |
| 123 'test/test_device_client.h', |
| 124 ], |
| 119 }], | 125 }], |
| 120 ['OS=="mac"', { | 126 ['OS=="mac"', { |
| 121 'dependencies': [ | 127 'dependencies': [ |
| 122 '../third_party/ocmock/ocmock.gyp:ocmock', | 128 '../third_party/ocmock/ocmock.gyp:ocmock', |
| 123 ], | 129 ], |
| 124 'link_settings': { | 130 'link_settings': { |
| 125 'libraries': [ | 131 'libraries': [ |
| 126 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', | 132 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', |
| 127 ], | 133 ], |
| 128 }, | 134 }, |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 '../build/isolate.gypi', | 226 '../build/isolate.gypi', |
| 221 ], | 227 ], |
| 222 'sources': [ | 228 'sources': [ |
| 223 'device_unittests.isolate', | 229 'device_unittests.isolate', |
| 224 ] | 230 ] |
| 225 } | 231 } |
| 226 ] | 232 ] |
| 227 }] | 233 }] |
| 228 ], | 234 ], |
| 229 } | 235 } |
| OLD | NEW |