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

Side by Side Diff: device/bluetooth/BUILD.gn

Issue 1422093002: bluetooth: android: BluetoothRemoteGattCharacteristicAndroid::GetUUID. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bta-cleanup-
Patch Set: 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/rules.gni") # For generate_jni(). 6 import("//build/config/android/rules.gni") # For generate_jni().
7 } 7 }
8 8
9 config("bluetooth_config") { 9 config("bluetooth_config") {
10 if (is_win) { 10 if (is_win) {
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 "//base", 195 "//base",
196 "//net", 196 "//net",
197 "//testing/gmock", 197 "//testing/gmock",
198 ] 198 ]
199 } 199 }
200 200
201 if (is_android) { 201 if (is_android) {
202 java_sources_needing_jni = [ 202 java_sources_needing_jni = [
203 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java" , 203 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java" ,
204 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java", 204 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java",
205 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCha racteristic.java",
205 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattSer vice.java", 206 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattSer vice.java",
206 "android/java/src/org/chromium/device/bluetooth/Wrappers.java", 207 "android/java/src/org/chromium/device/bluetooth/Wrappers.java",
207 ] 208 ]
208 209
209 generate_jni("jni_headers") { 210 generate_jni("jni_headers") {
210 sources = java_sources_needing_jni 211 sources = java_sources_needing_jni
211 jni_package = "bluetooth" 212 jni_package = "bluetooth"
212 } 213 }
213 214
214 android_library("java") { 215 android_library("java") {
215 java_files = java_sources_needing_jni 216 java_files = java_sources_needing_jni
216 deps = [ 217 deps = [
217 "//base:base_java", 218 "//base:base_java",
218 ] 219 ]
219 } 220 }
220 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698