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

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

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 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 "//base", 193 "//base",
194 "//net", 194 "//net",
195 "//testing/gmock", 195 "//testing/gmock",
196 ] 196 ]
197 } 197 }
198 198
199 if (is_android) { 199 if (is_android) {
200 java_sources_needing_jni = [ 200 java_sources_needing_jni = [
201 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java" , 201 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java" ,
202 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java", 202 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java",
203 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattSer vice.java",
203 "android/java/src/org/chromium/device/bluetooth/Wrappers.java", 204 "android/java/src/org/chromium/device/bluetooth/Wrappers.java",
204 ] 205 ]
205 206
206 generate_jni("jni_headers") { 207 generate_jni("jni_headers") {
207 sources = java_sources_needing_jni 208 sources = java_sources_needing_jni
208 jni_package = "bluetooth" 209 jni_package = "bluetooth"
209 } 210 }
210 211
211 android_library("java") { 212 android_library("java") {
212 java_files = java_sources_needing_jni 213 java_files = java_sources_needing_jni
213 deps = [ 214 deps = [
214 "//base:base_java", 215 "//base:base_java",
215 ] 216 ]
216 } 217 }
217 } 218 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698