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

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

Issue 1538173003: Implementing GATT connection/disconnect on OS X. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Skip tests if Bluetooth Low Energy is not available Created 4 years, 9 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
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/bluetooth.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("//build/config/features.gni") 4 import("//build/config/features.gni")
5 5
6 if (is_android) { 6 if (is_android) {
7 import("//build/config/android/rules.gni") # For generate_jni(). 7 import("//build/config/android/rules.gni") # For generate_jni().
8 } 8 }
9 9
10 config("bluetooth_config") { 10 config("bluetooth_config") {
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 } 279 }
280 } 280 }
281 281
282 static_library("mocks") { 282 static_library("mocks") {
283 testonly = true 283 testonly = true
284 sources = [ 284 sources = [
285 "test/mock_bluetooth_adapter.cc", 285 "test/mock_bluetooth_adapter.cc",
286 "test/mock_bluetooth_adapter.h", 286 "test/mock_bluetooth_adapter.h",
287 "test/mock_bluetooth_advertisement.cc", 287 "test/mock_bluetooth_advertisement.cc",
288 "test/mock_bluetooth_advertisement.h", 288 "test/mock_bluetooth_advertisement.h",
289 "test/mock_bluetooth_central_manager_mac.h",
290 "test/mock_bluetooth_central_manager_mac.mm",
291 "test/mock_bluetooth_device.cc", 289 "test/mock_bluetooth_device.cc",
292 "test/mock_bluetooth_device.h", 290 "test/mock_bluetooth_device.h",
293 "test/mock_bluetooth_discovery_session.cc", 291 "test/mock_bluetooth_discovery_session.cc",
294 "test/mock_bluetooth_discovery_session.h", 292 "test/mock_bluetooth_discovery_session.h",
295 "test/mock_bluetooth_gatt_characteristic.cc", 293 "test/mock_bluetooth_gatt_characteristic.cc",
296 "test/mock_bluetooth_gatt_characteristic.h", 294 "test/mock_bluetooth_gatt_characteristic.h",
297 "test/mock_bluetooth_gatt_connection.cc", 295 "test/mock_bluetooth_gatt_connection.cc",
298 "test/mock_bluetooth_gatt_connection.h", 296 "test/mock_bluetooth_gatt_connection.h",
299 "test/mock_bluetooth_gatt_descriptor.cc", 297 "test/mock_bluetooth_gatt_descriptor.cc",
300 "test/mock_bluetooth_gatt_descriptor.h", 298 "test/mock_bluetooth_gatt_descriptor.h",
(...skipping 28 matching lines...) Expand all
329 jni_package = "bluetooth" 327 jni_package = "bluetooth"
330 } 328 }
331 329
332 android_library("java") { 330 android_library("java") {
333 java_files = java_sources_needing_jni 331 java_files = java_sources_needing_jni
334 deps = [ 332 deps = [
335 "//base:base_java", 333 "//base:base_java",
336 ] 334 ]
337 } 335 }
338 } 336 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/bluetooth.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698