OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'mtpd', |
| 9 'type': 'executable', |
| 10 'dependencies': [ |
| 11 '../../base/base.gyp:base', |
| 12 '../../build/linux/system.gyp:udev', |
| 13 '../../chrome/chrome.gyp:mtp_file_entry_proto', |
| 14 '../../chrome/chrome.gyp:mtp_storage_info_proto', |
| 15 '../../third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp:dbus_cplu
splus', |
| 16 '../../third_party/libmtp/libmtp.gyp:libmtp', |
| 17 ], |
| 18 'sources': [ |
| 19 'source/assert_matching_file_types.cc', |
| 20 'source/build_config.h', |
| 21 'source/daemon.cc', |
| 22 'source/daemon.h', |
| 23 'source/device_event_delegate.h', |
| 24 'source/device_manager.cc', |
| 25 'source/device_manager.h', |
| 26 'source/file_entry.cc', |
| 27 'source/file_entry.h', |
| 28 'source/main.cc', |
| 29 'source/mtpd_server_impl.cc', |
| 30 'source/mtpd_server_impl.h', |
| 31 'source/service_constants.h', |
| 32 'source/storage_info.cc', |
| 33 'source/storage_info.h', |
| 34 'source/string_helpers.cc', |
| 35 'source/string_helpers.h', |
| 36 ], |
| 37 'include_dirs': [ |
| 38 '.', |
| 39 '<(SHARED_INTERMEDIATE_DIR)/protoc_out/chrome/browser/media_transfer_pro
tocol', |
| 40 ], |
| 41 }, |
| 42 ], |
| 43 } |
OLD | NEW |