Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: tools/usb_gadget.gyp

Issue 526593003: Move tools/usb_gadget.gyp to tools/usb_gadget/usb_gadget.gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/device_tests.gyp ('k') | tools/usb_gadget/usb_gadget.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/usb_gadget.gyp
diff --git a/tools/usb_gadget.gyp b/tools/usb_gadget.gyp
deleted file mode 100644
index 2839b95eb9ef35ead92a7e5ac835dfdb11505e99..0000000000000000000000000000000000000000
--- a/tools/usb_gadget.gyp
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'usb_gadget_files': [
- 'usb_gadget/__init__.py',
- 'usb_gadget/__main__.py',
- 'usb_gadget/default_gadget.py',
- 'usb_gadget/echo_gadget.py',
- 'usb_gadget/gadget.py',
- 'usb_gadget/hid_constants.py',
- 'usb_gadget/hid_descriptors.py',
- 'usb_gadget/hid_echo_gadget.py',
- 'usb_gadget/hid_gadget.py',
- 'usb_gadget/keyboard_gadget.py',
- 'usb_gadget/linux_gadgetfs.py',
- 'usb_gadget/mouse_gadget.py',
- 'usb_gadget/server.py',
- 'usb_gadget/usb_constants.py',
- 'usb_gadget/usb_descriptors.py',
- ],
- 'usb_gadget_package': '<(PRODUCT_DIR)/usb_gadget.zip',
- 'usb_gadget_package_hash': '<(PRODUCT_DIR)/usb_gadget.zip.md5',
- },
- 'targets': [
- {
- 'target_name': 'usb_gadget',
- 'type': 'none',
- 'actions': [
- {
- 'action_name': 'Building USB Gadget ZIP bundle',
- 'inputs': [
- 'usb_gadget/package.py',
- '<@(usb_gadget_files)',
- ],
- 'outputs': [
- '<(usb_gadget_package)',
- '<(usb_gadget_package_hash)',
- ],
- 'action': [
- 'python', 'usb_gadget/package.py',
- '--zip-file', '<(usb_gadget_package)',
- '--hash-file', '<(usb_gadget_package_hash)',
- '<@(usb_gadget_files)',
- ]
- }
- ]
- }
- ]
-}
« no previous file with comments | « device/device_tests.gyp ('k') | tools/usb_gadget/usb_gadget.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698