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

Side by Side Diff: components/proximity_auth/ble/BUILD.gn

Issue 1144333007: Adding unit tests for BLE connection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing compilation on OS X and Windows 2 Created 5 years, 6 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 source_set("ble") { 7 source_set("ble") {
8 sources = [ 8 sources = [
9 "bluetooth_low_energy_characteristics_finder.cc", 9 "bluetooth_low_energy_characteristics_finder.cc",
10 "bluetooth_low_energy_characteristics_finder.h", 10 "bluetooth_low_energy_characteristics_finder.h",
(...skipping 14 matching lines...) Expand all
25 "//device/bluetooth", 25 "//device/bluetooth",
26 "//net", 26 "//net",
27 ] 27 ]
28 } 28 }
29 29
30 source_set("unit_tests") { 30 source_set("unit_tests") {
31 testonly = true 31 testonly = true
32 sources = [ 32 sources = [
33 "bluetooth_low_energy_characteristics_finder_unittest.cc", 33 "bluetooth_low_energy_characteristics_finder_unittest.cc",
34 "bluetooth_low_energy_connection_finder_unittest.cc", 34 "bluetooth_low_energy_connection_finder_unittest.cc",
35 "bluetooth_low_energy_connection_unittest.cc",
35 "proximity_auth_ble_system_unittest.cc", 36 "proximity_auth_ble_system_unittest.cc",
36 ] 37 ]
37 38
38 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 39 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
39 40
40 deps = [ 41 deps = [
41 ":ble", 42 ":ble",
42 "//components/proximity_auth", 43 "//components/proximity_auth",
43 "//base/test:test_support", 44 "//base/test:test_support",
44 "//device/bluetooth:mocks", 45 "//device/bluetooth:mocks",
45 "//testing/gmock", 46 "//testing/gmock",
46 "//testing/gtest", 47 "//testing/gtest",
47 ] 48 ]
48 } 49 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698