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

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

Issue 1395783005: bluetooth: android: BluetoothRemoteGattServiceAndroid::GetUUID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed jyasskin comments Created 5 years, 2 months 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 ], 249 ],
250 'conditions': [ 250 'conditions': [
251 ['OS == "android"', { 251 ['OS == "android"', {
252 'targets': [ 252 'targets': [
253 { 253 {
254 'target_name': 'device_bluetooth_jni_headers', 254 'target_name': 'device_bluetooth_jni_headers',
255 'type': 'none', 255 'type': 'none',
256 'sources': [ 256 'sources': [
257 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapt er.java', 257 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapt er.java',
258 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevic e.java', 258 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevic e.java',
259 'android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemot eGattService.java',
259 'android/java/src/org/chromium/device/bluetooth/Wrappers.java', 260 'android/java/src/org/chromium/device/bluetooth/Wrappers.java',
260 ], 261 ],
261 'variables': { 262 'variables': {
262 'jni_gen_package': 'device_bluetooth', 263 'jni_gen_package': 'device_bluetooth',
263 }, 264 },
264 'includes': [ '../../build/jni_generator.gypi' ], 265 'includes': [ '../../build/jni_generator.gypi' ],
265 }, 266 },
266 { 267 {
267 'target_name': 'device_bluetooth_java', 268 'target_name': 'device_bluetooth_java',
268 'type': 'none', 269 'type': 'none',
269 'dependencies': [ 270 'dependencies': [
270 '../../base/base.gyp:base', 271 '../../base/base.gyp:base',
271 ], 272 ],
272 'variables': { 273 'variables': {
273 'java_in_dir': '../../device/bluetooth/android/java', 274 'java_in_dir': '../../device/bluetooth/android/java',
274 }, 275 },
275 'includes': [ '../../build/java.gypi' ], 276 'includes': [ '../../build/java.gypi' ],
276 }, 277 },
277 ], 278 ],
278 }], 279 }],
279 ], 280 ],
280 } 281 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698