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 static_library("storage_monitor") { | 8 static_library("storage_monitor") { |
9 sources = [ | 9 sources = [ |
10 "image_capture_device.h", | 10 "image_capture_device.h", |
(...skipping 92 matching lines...) Loading... |
103 | 103 |
104 deps = [ | 104 deps = [ |
105 "//base", | 105 "//base", |
106 ":storage_monitor", | 106 ":storage_monitor", |
107 ] | 107 ] |
108 | 108 |
109 if (is_linux) { | 109 if (is_linux) { |
110 deps += [ | 110 deps += [ |
111 "//device/media_transfer_protocol", | 111 "//device/media_transfer_protocol", |
112 "//device/media_transfer_protocol:mtp_file_entry_proto", | 112 "//device/media_transfer_protocol:mtp_file_entry_proto", |
| 113 "//device/media_transfer_protocol:mtp_storage_info_proto", |
113 ] | 114 ] |
114 } | 115 } |
115 } | 116 } |
OLD | NEW |