| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'mtpd', | 8 'target_name': 'mtpd', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../../base/base.gyp:base', | 11 '../../base/base.gyp:base', |
| 12 '../../build/linux/system.gyp:glib', | 12 '../../build/linux/system.gyp:glib', |
| 13 '../../build/linux/system.gyp:udev', | 13 '../../build/linux/system.gyp:udev', |
| 14 '../../device/device.gyp:mtp_file_entry_proto', | 14 '../../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_fi
le_entry_proto', |
| 15 '../../device/device.gyp:mtp_storage_info_proto', | 15 '../../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_st
orage_info_proto', |
| 16 '../../third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp:dbus_cplu
splus', | 16 '../../third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp:dbus_cplu
splus', |
| 17 '../../third_party/libmtp/libmtp.gyp:libmtp', | 17 '../../third_party/libmtp/libmtp.gyp:libmtp', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'source/assert_matching_file_types.cc', | 20 'source/assert_matching_file_types.cc', |
| 21 'source/build_config.h', | 21 'source/build_config.h', |
| 22 'source/daemon.cc', | 22 'source/daemon.cc', |
| 23 'source/daemon.h', | 23 'source/daemon.h', |
| 24 'source/device_event_delegate.h', | 24 'source/device_event_delegate.h', |
| 25 'source/device_manager.cc', | 25 'source/device_manager.cc', |
| 26 'source/device_manager.h', | 26 'source/device_manager.h', |
| 27 'source/file_entry.cc', | 27 'source/file_entry.cc', |
| 28 'source/file_entry.h', | 28 'source/file_entry.h', |
| 29 'source/main.cc', | 29 'source/main.cc', |
| 30 'source/mtpd_server_impl.cc', | 30 'source/mtpd_server_impl.cc', |
| 31 'source/mtpd_server_impl.h', | 31 'source/mtpd_server_impl.h', |
| 32 'source/service_constants.h', | 32 'source/service_constants.h', |
| 33 'source/storage_info.cc', | 33 'source/storage_info.cc', |
| 34 'source/storage_info.h', | 34 'source/storage_info.h', |
| 35 'source/string_helpers.cc', | 35 'source/string_helpers.cc', |
| 36 'source/string_helpers.h', | 36 'source/string_helpers.h', |
| 37 ], | 37 ], |
| 38 'include_dirs': [ | 38 'include_dirs': [ |
| 39 '.', | 39 '.', |
| 40 '<(SHARED_INTERMEDIATE_DIR)/protoc_out/device/media_transfer_protocol', | 40 '<(SHARED_INTERMEDIATE_DIR)/protoc_out/device/media_transfer_protocol', |
| 41 ], | 41 ], |
| 42 }, | 42 }, |
| 43 ], | 43 ], |
| 44 } | 44 } |
| OLD | NEW |