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

Side by Side Diff: tools/usb_gadget/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: 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 unified diff | Download patch
« no previous file with comments | « tools/usb_gadget.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
tfarina 2014/08/30 02:10:27 git sometimes is weird. Could you tweak the simila
Reilly Grant (use Gerrit) 2014/08/31 16:54:22 Done.
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 {
tfarina 2014/08/30 02:10:27 Indent only two spaces from '
Reilly Grant (use Gerrit) 2014/08/31 16:54:22 Actually the line above needs to be indented an ex
8 'target_name': 'usb_gadget',
9 'type': 'none',
10 'variables': {
11 'usb_gadget_files': [
12 '__init__.py',
13 '__main__.py',
14 'default_gadget.py',
15 'gadget.py',
16 'hid_constants.py',
17 'hid_descriptors.py',
18 'hid_echo_gadget.py',
19 'hid_gadget.py',
20 'keyboard_gadget.py',
21 'linux_gadgetfs.py',
22 'mouse_gadget.py',
23 'server.py',
24 'usb_constants.py',
25 'usb_descriptors.py',
26 ],
27 'usb_gadget_package': '<(PRODUCT_DIR)/usb_gadget.zip',
28 'usb_gadget_package_hash': '<(PRODUCT_DIR)/usb_gadget.zip.md5',
29 },
30 'actions': [
31 {
32 'action_name': 'Building USB Gadget ZIP bundle',
33 'inputs': [
34 'package.py',
35 '<@(usb_gadget_files)',
36 ],
37 'outputs': [
38 '<(usb_gadget_package)',
39 '<(usb_gadget_package_hash)',
40 ],
41 'action': [
42 'python', 'package.py',
43 '--zip-file', '<(usb_gadget_package)',
44 '--hash-file', '<(usb_gadget_package_hash)',
45 '<@(usb_gadget_files)',
46 ]
47 }
48 ]
49 }
50 ]
51 }
OLDNEW
« no previous file with comments | « tools/usb_gadget.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698