| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'device_bluetooth_test_java', | 106 'device_bluetooth_test_java', |
| 107 'device_bluetooth_test_jni_headers', | 107 'device_bluetooth_test_jni_headers', |
| 108 ], | 108 ], |
| 109 'sources/': [ | 109 'sources/': [ |
| 110 ['exclude', '(^|/)hid'], | 110 ['exclude', '(^|/)hid'], |
| 111 ['exclude', '(^|/)serial'], | 111 ['exclude', '(^|/)serial'], |
| 112 ['exclude', '(^|/)usb'], | 112 ['exclude', '(^|/)usb'], |
| 113 ], | 113 ], |
| 114 }], | 114 }], |
| 115 ['OS=="mac"', { | 115 ['OS=="mac"', { |
| 116 'dependencies': [ |
| 117 '../third_party/ocmock/ocmock.gyp:ocmock', |
| 118 ], |
| 116 'link_settings': { | 119 'link_settings': { |
| 117 'libraries': [ | 120 'libraries': [ |
| 118 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', | 121 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', |
| 119 ], | 122 ], |
| 120 }, | 123 }, |
| 124 'xcode_settings' : { |
| 125 'OTHER_LDFLAGS' : [ |
| 126 '-ObjC', |
| 127 ], |
| 128 }, |
| 121 }], | 129 }], |
| 122 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 130 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| 123 'conditions': [ | 131 'conditions': [ |
| 124 ['use_allocator!="none"', { | 132 ['use_allocator!="none"', { |
| 125 'dependencies': [ | 133 'dependencies': [ |
| 126 '../base/allocator/allocator.gyp:allocator', | 134 '../base/allocator/allocator.gyp:allocator', |
| 127 ], | 135 ], |
| 128 }], | 136 }], |
| 129 ], | 137 ], |
| 130 }], | 138 }], |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 '../build/isolate.gypi', | 215 '../build/isolate.gypi', |
| 208 ], | 216 ], |
| 209 'sources': [ | 217 'sources': [ |
| 210 'device_unittests.isolate', | 218 'device_unittests.isolate', |
| 211 ] | 219 ] |
| 212 } | 220 } |
| 213 ] | 221 ] |
| 214 }] | 222 }] |
| 215 ], | 223 ], |
| 216 } | 224 } |
| OLD | NEW |