summaryrefslogtreecommitdiffstats
path: root/tools/usb_gadget/usb_gadget.gyp
blob: ed991d9d4ce1035739ba37e47dc9fb60acdefe71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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.

{
  'targets': [
    {
      'target_name': 'usb_gadget',
      'type': 'none',
      'variables': {
        'usb_gadget_files': [
          '__init__.py',
          '__main__.py',
          'default_gadget.py',
          'echo_gadget.py',
          'gadget.py',
          'hid_constants.py',
          'hid_descriptors.py',
          'hid_echo_gadget.py',
          'hid_gadget.py',
          'keyboard_gadget.py',
          'linux_gadgetfs.py',
          'mouse_gadget.py',
          'server.py',
          'usb_constants.py',
          'usb_descriptors.py',
        ],
        'usb_gadget_package': '<(PRODUCT_DIR)/usb_gadget.zip',
        'usb_gadget_package_hash': '<(PRODUCT_DIR)/usb_gadget.zip.md5',
      },
      'actions': [
        {
          'action_name': 'Building USB Gadget ZIP bundle',
          'inputs': [
            'package.py',
            '<@(usb_gadget_files)',
          ],
          'outputs': [
            '<(usb_gadget_package)',
            '<(usb_gadget_package_hash)',
          ],
          'action': [
            'python', 'package.py',
            '--zip-file', '<(usb_gadget_package)',
            '--hash-file', '<(usb_gadget_package_hash)',
            '<@(usb_gadget_files)',
          ]
        }
      ]
    }
  ]
}