| 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 # GYP version: device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_fi
le_entry_proto | 7 # GYP version: device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_fi
le_entry_proto |
| 8 proto_library("mtp_file_entry_proto") { | 8 proto_library("mtp_file_entry_proto") { |
| 9 sources = [ | 9 sources = [ |
| 10 "//third_party/cros_system_api/dbus/mtp_file_entry.proto", | 10 "//third_party/cros_system_api/dbus/mtp_file_entry.proto", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 # GYP version: device/media_transfer_protocol:media_transfer_protocol.gyp:media_
transfer_protocol | 23 # GYP version: device/media_transfer_protocol:media_transfer_protocol.gyp:media_
transfer_protocol |
| 24 static_library("media_transfer_protocol") { | 24 static_library("media_transfer_protocol") { |
| 25 sources = [ | 25 sources = [ |
| 26 "media_transfer_protocol_daemon_client.cc", | 26 "media_transfer_protocol_daemon_client.cc", |
| 27 "media_transfer_protocol_daemon_client.h", | 27 "media_transfer_protocol_daemon_client.h", |
| 28 "media_transfer_protocol_manager.cc", | 28 "media_transfer_protocol_manager.cc", |
| 29 "media_transfer_protocol_manager.h", | 29 "media_transfer_protocol_manager.h", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 configs += [ "//build/config/linux:dbus" ] |
| 33 |
| 32 public_deps = [ | 34 public_deps = [ |
| 33 ":mtp_file_entry_proto", | 35 ":mtp_file_entry_proto", |
| 34 ":mtp_storage_info_proto", | 36 ":mtp_storage_info_proto", |
| 35 "//base", | |
| 36 ] | 37 ] |
| 37 deps = [ | |
| 38 "//dbus", | |
| 39 ] | |
| 40 | |
| 41 if (is_chromeos) { | |
| 42 deps += [ "//chromeos" ] | |
| 43 } | |
| 44 } | 38 } |
| OLD | NEW |