| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 'libraries': [ | 142 'libraries': [ |
| 143 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', | 143 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', |
| 144 ], | 144 ], |
| 145 }, | 145 }, |
| 146 'xcode_settings' : { | 146 'xcode_settings' : { |
| 147 'OTHER_LDFLAGS' : [ | 147 'OTHER_LDFLAGS' : [ |
| 148 '-ObjC', | 148 '-ObjC', |
| 149 ], | 149 ], |
| 150 }, | 150 }, |
| 151 }], | 151 }], |
| 152 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | |
| 153 'conditions': [ | |
| 154 ['use_allocator!="none"', { | |
| 155 'dependencies': [ | |
| 156 '../base/allocator/allocator.gyp:allocator', | |
| 157 ], | |
| 158 }], | |
| 159 ], | |
| 160 }], | |
| 161 ['use_udev==1', { | 152 ['use_udev==1', { |
| 162 'dependencies': [ | 153 'dependencies': [ |
| 163 'udev_linux/udev.gyp:udev_linux', | 154 'udev_linux/udev.gyp:udev_linux', |
| 164 ], | 155 ], |
| 165 'sources': [ | 156 'sources': [ |
| 166 'udev_linux/udev_unittest.cc', | 157 'udev_linux/udev_unittest.cc', |
| 167 ], | 158 ], |
| 168 }], | 159 }], |
| 169 ['OS=="linux" and use_udev==0', { | 160 ['OS=="linux" and use_udev==0', { |
| 170 # Udev is the only Linux implementation. If we're compiling without | 161 # Udev is the only Linux implementation. If we're compiling without |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 '../build/isolate.gypi', | 247 '../build/isolate.gypi', |
| 257 ], | 248 ], |
| 258 'sources': [ | 249 'sources': [ |
| 259 'device_unittests.isolate', | 250 'device_unittests.isolate', |
| 260 ] | 251 ] |
| 261 } | 252 } |
| 262 ] | 253 ] |
| 263 }] | 254 }] |
| 264 ], | 255 ], |
| 265 } | 256 } |
| OLD | NEW |