d8a7d77ce475d2308db2ba48ed1ba21e9a33ccae
[platform/framework/web/crosswalk.git] / src / device / usb / BUILD.gn
1 # Copyright (c) 2013 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 source_ids = "//third_party/usb_ids/usb.ids"
6 generated_ids = "$target_gen_dir/usb_ids_gen.cc"
7
8 source_set("usb") {
9   sources = [
10     "usb_ids.cc",
11     "usb_ids.h",
12     generated_ids,
13   ]
14   deps = [
15     ":usb_device_ids",
16     "//base",
17   ]
18 }
19
20 action("usb_device_ids") {
21   script = "//device/usb/tools/usb_ids.py"
22   inputs = [ source_ids ]
23   outputs = [ generated_ids ]
24   args = [
25     "-i", rebase_path(source_ids,  root_build_dir),
26     "-o", rebase_path(generated_ids, root_build_dir),
27   ]
28
29   # Only the device_usb target can depend on us.
30   visibility = [ ":usb" ]
31 }