Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: device/bluetooth/bluetooth.gyp

Issue 1422093002: bluetooth: android: BluetoothRemoteGattCharacteristicAndroid::GetUUID. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bta-cleanup-
Patch Set: fix non android builds Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 ], 251 ],
252 'conditions': [ 252 'conditions': [
253 ['OS == "android"', { 253 ['OS == "android"', {
254 'targets': [ 254 'targets': [
255 { 255 {
256 'target_name': 'device_bluetooth_jni_headers', 256 'target_name': 'device_bluetooth_jni_headers',
257 'type': 'none', 257 'type': 'none',
258 'sources': [ 258 'sources': [
259 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapt er.java', 259 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapt er.java',
260 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevic e.java', 260 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevic e.java',
261 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemot eGattCharacteristic.java',
261 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemot eGattService.java', 262 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemot eGattService.java',
262 'android/java/src/org/chromium/device/bluetooth/Wrappers.java', 263 'android/java/src/org/chromium/device/bluetooth/Wrappers.java',
263 ], 264 ],
264 'variables': { 265 'variables': {
265 'jni_gen_package': 'device_bluetooth', 266 'jni_gen_package': 'device_bluetooth',
266 }, 267 },
267 'includes': [ '../../build/jni_generator.gypi' ], 268 'includes': [ '../../build/jni_generator.gypi' ],
268 }, 269 },
269 { 270 {
270 'target_name': 'device_bluetooth_java', 271 'target_name': 'device_bluetooth_java',
271 'type': 'none', 272 'type': 'none',
272 'dependencies': [ 273 'dependencies': [
273 '../../base/base.gyp:base', 274 '../../base/base.gyp:base',
274 ], 275 ],
275 'variables': { 276 'variables': {
276 'java_in_dir': '../../device/bluetooth/android/java', 277 'java_in_dir': '../../device/bluetooth/android/java',
277 }, 278 },
278 'includes': [ '../../build/java.gypi' ], 279 'includes': [ '../../build/java.gypi' ],
279 }, 280 },
280 ], 281 ],
281 }], 282 }],
282 ], 283 ],
283 } 284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698