| OLD | NEW |
| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 # GYP version: components/storage_monitor.gypi:storage_monitor | 7 # GYP version: components/storage_monitor.gypi:storage_monitor |
| 8 source_set("storage_monitor") { | 8 source_set("storage_monitor") { |
| 9 sources = [ | 9 sources = [ |
| 10 "image_capture_device.h", | 10 "image_capture_device.h", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "mtab_watcher_linux.cc", | 79 "mtab_watcher_linux.cc", |
| 80 "mtab_watcher_linux.h", | 80 "mtab_watcher_linux.h", |
| 81 "storage_monitor_linux.cc", | 81 "storage_monitor_linux.cc", |
| 82 "storage_monitor_linux.h", | 82 "storage_monitor_linux.h", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 } | 85 } |
| 86 | 86 |
| 87 # GYP version: components/storage_monitor.gypi:storage_monitor_test_support | 87 # GYP version: components/storage_monitor.gypi:storage_monitor_test_support |
| 88 source_set("test_support") { | 88 source_set("test_support") { |
| 89 testonly = true |
| 89 sources = [ | 90 sources = [ |
| 90 "mock_removable_storage_observer.cc", | 91 "mock_removable_storage_observer.cc", |
| 91 "mock_removable_storage_observer.h", | 92 "mock_removable_storage_observer.h", |
| 92 "test_media_transfer_protocol_manager_linux.cc", | 93 "test_media_transfer_protocol_manager_linux.cc", |
| 93 "test_media_transfer_protocol_manager_linux.h", | 94 "test_media_transfer_protocol_manager_linux.h", |
| 94 "test_portable_device_watcher_win.cc", | 95 "test_portable_device_watcher_win.cc", |
| 95 "test_portable_device_watcher_win.h", | 96 "test_portable_device_watcher_win.h", |
| 96 "test_storage_monitor.cc", | 97 "test_storage_monitor.cc", |
| 97 "test_storage_monitor.h", | 98 "test_storage_monitor.h", |
| 98 "test_storage_monitor_win.cc", | 99 "test_storage_monitor_win.cc", |
| 99 "test_storage_monitor_win.h", | 100 "test_storage_monitor_win.h", |
| 100 "test_volume_mount_watcher_win.cc", | 101 "test_volume_mount_watcher_win.cc", |
| 101 "test_volume_mount_watcher_win.h", | 102 "test_volume_mount_watcher_win.h", |
| 102 ] | 103 ] |
| 103 | 104 |
| 104 public_deps = [ | 105 public_deps = [ |
| 105 ":storage_monitor", | 106 ":storage_monitor", |
| 106 "//base", | 107 "//base", |
| 107 ] | 108 ] |
| 108 | 109 |
| 109 if (is_linux) { | 110 if (is_linux) { |
| 110 deps = [ | 111 deps = [ |
| 111 "//device/media_transfer_protocol", | 112 "//device/media_transfer_protocol", |
| 112 "//device/media_transfer_protocol:mtp_file_entry_proto", | 113 "//device/media_transfer_protocol:mtp_file_entry_proto", |
| 113 "//device/media_transfer_protocol:mtp_storage_info_proto", | 114 "//device/media_transfer_protocol:mtp_storage_info_proto", |
| 114 ] | 115 ] |
| 115 } | 116 } |
| 117 |
| 118 if (is_win) { |
| 119 deps = [ |
| 120 "//testing/gtest", |
| 121 ] |
| 122 } |
| 116 } | 123 } |
| 117 | 124 |
| 118 source_set("unit_tests") { | 125 source_set("unit_tests") { |
| 119 testonly = true | 126 testonly = true |
| 120 sources = [ | 127 sources = [ |
| 121 "image_capture_device_manager_unittest.mm", | 128 "image_capture_device_manager_unittest.mm", |
| 122 "media_storage_util_unittest.cc", | 129 "media_storage_util_unittest.cc", |
| 123 "media_transfer_protocol_device_observer_linux_unittest.cc", | 130 "media_transfer_protocol_device_observer_linux_unittest.cc", |
| 124 "storage_info_unittest.cc", | 131 "storage_info_unittest.cc", |
| 125 "storage_monitor_mac_unittest.mm", | 132 "storage_monitor_mac_unittest.mm", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 138 sources += [ "storage_monitor_linux_unittest.cc" ] | 145 sources += [ "storage_monitor_linux_unittest.cc" ] |
| 139 } | 146 } |
| 140 if (is_chromeos) { | 147 if (is_chromeos) { |
| 141 sources += [ "storage_monitor_chromeos_unittest.cc" ] | 148 sources += [ "storage_monitor_chromeos_unittest.cc" ] |
| 142 deps += [ | 149 deps += [ |
| 143 "//chromeos:test_support", | 150 "//chromeos:test_support", |
| 144 "//testing/gmock", | 151 "//testing/gmock", |
| 145 ] | 152 ] |
| 146 } | 153 } |
| 147 } | 154 } |
| OLD | NEW |