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("//build/config/features.gni")
7 # GYP version: components/storage_monitor.gypi:storage_monitor
8 source_set("storage_monitor") {
10 "image_capture_device.h",
11 "image_capture_device.mm",
12 "image_capture_device_manager.h",
13 "image_capture_device_manager.mm",
14 "media_storage_util.cc",
15 "media_storage_util.h",
16 "media_transfer_protocol_device_observer_linux.cc",
17 "media_transfer_protocol_device_observer_linux.h",
18 "mtab_watcher_linux.cc",
19 "mtab_watcher_linux.h",
20 "portable_device_watcher_win.cc",
21 "portable_device_watcher_win.h",
22 "removable_device_constants.cc",
23 "removable_device_constants.h",
24 "removable_storage_observer.h",
29 "storage_monitor_chromeos.cc",
30 "storage_monitor_chromeos.h",
31 "storage_monitor_linux.cc",
32 "storage_monitor_linux.h",
33 "storage_monitor_mac.h",
34 "storage_monitor_mac.mm",
35 "storage_monitor_win.cc",
36 "storage_monitor_win.h",
37 "transient_device_ids.cc",
38 "transient_device_ids.h",
41 "volume_mount_watcher_win.cc",
42 "volume_mount_watcher_win.h",
51 "DiskArbitration.framework",
52 "Foundation.framework",
53 "ImageCaptureCore.framework",
59 "//device/media_transfer_protocol",
60 "//device/media_transfer_protocol:mtp_file_entry_proto",
61 "//device/media_transfer_protocol:mtp_storage_info_proto",
66 deps += [ "//device/udev_linux" ]
67 } else if (is_linux) {
68 # These were already removed for non-Linux.
70 "storage_monitor_linux.cc",
71 "storage_monitor_linux.h",
79 "mtab_watcher_linux.cc",
80 "mtab_watcher_linux.h",
81 "storage_monitor_linux.cc",
82 "storage_monitor_linux.h",
87 # GYP version: components/storage_monitor.gypi:storage_monitor_test_support
88 source_set("test_support") {
90 "mock_removable_storage_observer.cc",
91 "mock_removable_storage_observer.h",
92 "test_media_transfer_protocol_manager_linux.cc",
93 "test_media_transfer_protocol_manager_linux.h",
94 "test_portable_device_watcher_win.cc",
95 "test_portable_device_watcher_win.h",
96 "test_storage_monitor.cc",
97 "test_storage_monitor.h",
98 "test_storage_monitor_win.cc",
99 "test_storage_monitor_win.h",
100 "test_volume_mount_watcher_win.cc",
101 "test_volume_mount_watcher_win.h",
111 "//device/media_transfer_protocol",
112 "//device/media_transfer_protocol:mtp_file_entry_proto",
113 "//device/media_transfer_protocol:mtp_storage_info_proto",
118 source_set("unit_tests") {
121 "image_capture_device_manager_unittest.mm",
122 "media_storage_util_unittest.cc",
123 "media_transfer_protocol_device_observer_linux_unittest.cc",
124 "storage_info_unittest.cc",
125 "storage_monitor_mac_unittest.mm",
126 "storage_monitor_unittest.cc",
127 "storage_monitor_win_unittest.cc",
130 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
137 if (is_linux && !is_chromeos) {
138 sources += [ "storage_monitor_linux_unittest.cc" ]
141 sources += [ "storage_monitor_chromeos_unittest.cc" ]
143 "//chromeos:test_support",