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

Side by Side Diff: device/BUILD.gn

Issue 950083003: device/bluetooth: Implemented UriBeacon decoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « no previous file | device/bluetooth/BUILD.gn » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 test("device_unittests") { 8 test("device_unittests") {
9 sources = [ 9 sources = [
10 "battery/battery_status_manager_linux_unittest.cc", 10 "battery/battery_status_manager_linux_unittest.cc",
11 "battery/battery_status_manager_win_unittest.cc", 11 "battery/battery_status_manager_win_unittest.cc",
12 "battery/battery_status_service_unittest.cc", 12 "battery/battery_status_service_unittest.cc",
13 "bluetooth/bluetooth_adapter_mac_unittest.mm", 13 "bluetooth/bluetooth_adapter_mac_unittest.mm",
14 "bluetooth/bluetooth_adapter_profile_chromeos_unittest.cc", 14 "bluetooth/bluetooth_adapter_profile_chromeos_unittest.cc",
15 "bluetooth/bluetooth_adapter_unittest.cc", 15 "bluetooth/bluetooth_adapter_unittest.cc",
16 "bluetooth/bluetooth_adapter_win_unittest.cc", 16 "bluetooth/bluetooth_adapter_win_unittest.cc",
17 "bluetooth/bluetooth_audio_sink_chromeos_unittest.cc", 17 "bluetooth/bluetooth_audio_sink_chromeos_unittest.cc",
18 "bluetooth/bluetooth_chromeos_unittest.cc", 18 "bluetooth/bluetooth_chromeos_unittest.cc",
19 "bluetooth/bluetooth_device_unittest.cc", 19 "bluetooth/bluetooth_device_unittest.cc",
20 "bluetooth/bluetooth_device_win_unittest.cc", 20 "bluetooth/bluetooth_device_win_unittest.cc",
21 "bluetooth/bluetooth_gatt_chromeos_unittest.cc", 21 "bluetooth/bluetooth_gatt_chromeos_unittest.cc",
22 "bluetooth/bluetooth_low_energy_win_unittest.cc", 22 "bluetooth/bluetooth_low_energy_win_unittest.cc",
23 "bluetooth/bluetooth_service_record_win_unittest.cc", 23 "bluetooth/bluetooth_service_record_win_unittest.cc",
24 "bluetooth/bluetooth_socket_chromeos_unittest.cc", 24 "bluetooth/bluetooth_socket_chromeos_unittest.cc",
25 "bluetooth/bluetooth_task_manager_win_unittest.cc", 25 "bluetooth/bluetooth_task_manager_win_unittest.cc",
armansito 2015/03/11 23:23:36 You probably need to add "//device/bluetooth/uribe
26 "bluetooth/bluetooth_uuid_unittest.cc", 26 "bluetooth/bluetooth_uuid_unittest.cc",
27 "bluetooth/uribeacon/uri_encoder_unittest.cc",
27 "hid/hid_connection_unittest.cc", 28 "hid/hid_connection_unittest.cc",
28 "hid/hid_device_filter_unittest.cc", 29 "hid/hid_device_filter_unittest.cc",
29 "hid/hid_report_descriptor_unittest.cc", 30 "hid/hid_report_descriptor_unittest.cc",
30 "hid/input_service_linux_unittest.cc", 31 "hid/input_service_linux_unittest.cc",
31 "hid/test_report_descriptors.cc", 32 "hid/test_report_descriptors.cc",
32 "hid/test_report_descriptors.h", 33 "hid/test_report_descriptors.h",
33 "nfc/nfc_chromeos_unittest.cc", 34 "nfc/nfc_chromeos_unittest.cc",
34 "nfc/nfc_ndef_record_unittest.cc", 35 "nfc/nfc_ndef_record_unittest.cc",
35 "serial/data_sink_unittest.cc", 36 "serial/data_sink_unittest.cc",
36 "serial/data_source_unittest.cc", 37 "serial/data_source_unittest.cc",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 "//device/hid", 107 "//device/hid",
107 "//device/serial", 108 "//device/serial",
108 "//device/serial:test_support", 109 "//device/serial:test_support",
109 ] 110 ]
110 } 111 }
111 112
112 if (is_linux && !use_dbus) { 113 if (is_linux && !use_dbus) {
113 sources -= [ "battery/battery_status_manager_linux_unittest.cc" ] 114 sources -= [ "battery/battery_status_manager_linux_unittest.cc" ]
114 } 115 }
115 } 116 }
OLDNEW
« no previous file with comments | « no previous file | device/bluetooth/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698