| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'bluetooth_advertisement_chromeos.cc', | 46 'bluetooth_advertisement_chromeos.cc', |
| 47 'bluetooth_advertisement_chromeos.h', | 47 'bluetooth_advertisement_chromeos.h', |
| 48 'bluetooth_audio_sink.cc', | 48 'bluetooth_audio_sink.cc', |
| 49 'bluetooth_audio_sink.h', | 49 'bluetooth_audio_sink.h', |
| 50 'bluetooth_audio_sink_chromeos.cc', | 50 'bluetooth_audio_sink_chromeos.cc', |
| 51 'bluetooth_audio_sink_chromeos.h', | 51 'bluetooth_audio_sink_chromeos.h', |
| 52 'bluetooth_channel_mac.mm', | 52 'bluetooth_channel_mac.mm', |
| 53 'bluetooth_channel_mac.h', | 53 'bluetooth_channel_mac.h', |
| 54 'bluetooth_device.cc', | 54 'bluetooth_device.cc', |
| 55 'bluetooth_device.h', | 55 'bluetooth_device.h', |
| 56 'bluetooth_device_android.h', |
| 57 'bluetooth_device_android.cc', |
| 56 'bluetooth_device_chromeos.cc', | 58 'bluetooth_device_chromeos.cc', |
| 57 'bluetooth_device_chromeos.h', | 59 'bluetooth_device_chromeos.h', |
| 58 'bluetooth_device_mac.h', | 60 'bluetooth_device_mac.h', |
| 59 'bluetooth_device_mac.mm', | 61 'bluetooth_device_mac.mm', |
| 60 'bluetooth_device_win.cc', | 62 'bluetooth_device_win.cc', |
| 61 'bluetooth_device_win.h', | 63 'bluetooth_device_win.h', |
| 62 'bluetooth_discovery_filter.cc', | 64 'bluetooth_discovery_filter.cc', |
| 63 'bluetooth_discovery_filter.h', | 65 'bluetooth_discovery_filter.h', |
| 64 'bluetooth_discovery_manager_mac.mm', | 66 'bluetooth_discovery_manager_mac.mm', |
| 65 'bluetooth_discovery_manager_mac.h', | 67 'bluetooth_discovery_manager_mac.h', |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 }, | 240 }, |
| 239 ], | 241 ], |
| 240 'conditions': [ | 242 'conditions': [ |
| 241 ['OS == "android"', { | 243 ['OS == "android"', { |
| 242 'targets': [ | 244 'targets': [ |
| 243 { | 245 { |
| 244 'target_name': 'device_bluetooth_jni_headers', | 246 'target_name': 'device_bluetooth_jni_headers', |
| 245 'type': 'none', | 247 'type': 'none', |
| 246 'sources': [ | 248 'sources': [ |
| 247 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapt
er.java', | 249 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapt
er.java', |
| 250 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevic
e.java', |
| 248 'android/java/src/org/chromium/device/bluetooth/Wrappers.java', | 251 'android/java/src/org/chromium/device/bluetooth/Wrappers.java', |
| 249 ], | 252 ], |
| 250 'variables': { | 253 'variables': { |
| 251 'jni_gen_package': 'device_bluetooth', | 254 'jni_gen_package': 'device_bluetooth', |
| 252 }, | 255 }, |
| 253 'includes': [ '../../build/jni_generator.gypi' ], | 256 'includes': [ '../../build/jni_generator.gypi' ], |
| 254 }, | 257 }, |
| 255 { | 258 { |
| 256 'target_name': 'device_bluetooth_java', | 259 'target_name': 'device_bluetooth_java', |
| 257 'type': 'none', | 260 'type': 'none', |
| 258 'dependencies': [ | 261 'dependencies': [ |
| 259 '../../base/base.gyp:base', | 262 '../../base/base.gyp:base', |
| 260 ], | 263 ], |
| 261 'variables': { | 264 'variables': { |
| 262 'java_in_dir': '../../device/bluetooth/android/java', | 265 'java_in_dir': '../../device/bluetooth/android/java', |
| 263 }, | 266 }, |
| 264 'includes': [ '../../build/java.gypi' ], | 267 'includes': [ '../../build/java.gypi' ], |
| 265 }, | 268 }, |
| 266 ], | 269 ], |
| 267 }], | 270 }], |
| 268 ], | 271 ], |
| 269 } | 272 } |
| OLD | NEW |