Don't preload rarely seen large images
[chromium-blink-merge.git] / components / proximity_auth / ble / BUILD.gn
blob8ce5e494eb19fb59f0d20c79464e1f5346cc2efd
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
3 # found in the LICENSE file.
5 import("//testing/test.gni")
7 source_set("ble") {
8   sources = [
9     "bluetooth_low_energy_characteristics_finder.cc",
10     "bluetooth_low_energy_characteristics_finder.h",
11     "bluetooth_low_energy_connection.cc",
12     "bluetooth_low_energy_connection.h",
13     "bluetooth_low_energy_connection_finder.cc",
14     "bluetooth_low_energy_connection_finder.h",
15     "fake_wire_message.cc",
16     "fake_wire_message.h",
17     "proximity_auth_ble_system.cc",
18     "proximity_auth_ble_system.h",
19     "remote_attribute.h",
20   ]
22   deps = [
23     "//base",
24     "//components/proximity_auth",
25     "//device/bluetooth",
26     "//net",
27   ]
29   public_deps = [
30     "//components/proximity_auth/cryptauth/proto",
31   ]
34 source_set("unit_tests") {
35   testonly = true
36   sources = [
37     "bluetooth_low_energy_characteristics_finder_unittest.cc",
38     "bluetooth_low_energy_connection_finder_unittest.cc",
39     "bluetooth_low_energy_connection_unittest.cc",
40     "proximity_auth_ble_system_unittest.cc",
41   ]
43   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
45   deps = [
46     ":ble",
47     "//components/proximity_auth",
48     "//base/test:test_support",
49     "//device/bluetooth:mocks",
50     "//testing/gmock",
51     "//testing/gtest",
52   ]
54   public_deps = [
55     "//components/proximity_auth/cryptauth/proto",
56   ]