| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'dependencies': [ | 111 'dependencies': [ |
| 112 '../testing/android/native_test.gyp:native_test_native_code', | 112 '../testing/android/native_test.gyp:native_test_native_code', |
| 113 'device_bluetooth_test_java', | 113 'device_bluetooth_test_java', |
| 114 'device_bluetooth_test_jni_headers', | 114 'device_bluetooth_test_jni_headers', |
| 115 ], | 115 ], |
| 116 'sources/': [ | 116 'sources/': [ |
| 117 ['exclude', '(^|/)hid'], | 117 ['exclude', '(^|/)hid'], |
| 118 ['exclude', '(^|/)serial'], | 118 ['exclude', '(^|/)serial'], |
| 119 ['exclude', '(^|/)usb'], | 119 ['exclude', '(^|/)usb'], |
| 120 ], | 120 ], |
| 121 'sources!': [ | |
| 122 'test/test_device_client.cc', | |
| 123 'test/test_device_client.h', | |
| 124 ], | |
| 125 }], | 121 }], |
| 126 ['OS=="mac"', { | 122 ['OS=="mac"', { |
| 127 'dependencies': [ | 123 'dependencies': [ |
| 128 '../third_party/ocmock/ocmock.gyp:ocmock', | 124 '../third_party/ocmock/ocmock.gyp:ocmock', |
| 129 ], | 125 ], |
| 130 'link_settings': { | 126 'link_settings': { |
| 131 'libraries': [ | 127 'libraries': [ |
| 132 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', | 128 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', |
| 133 ], | 129 ], |
| 134 }, | 130 }, |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 '../build/isolate.gypi', | 222 '../build/isolate.gypi', |
| 227 ], | 223 ], |
| 228 'sources': [ | 224 'sources': [ |
| 229 'device_unittests.isolate', | 225 'device_unittests.isolate', |
| 230 ] | 226 ] |
| 231 } | 227 } |
| 232 ] | 228 ] |
| 233 }] | 229 }] |
| 234 ], | 230 ], |
| 235 } | 231 } |
| OLD | NEW |