Stop using VLOG() in WebSocketChannel.
[chromium-blink-merge.git] / device / usb / BUILD.gn
blob428a7172d6ab93c66b0f6cfd4b7dc15990bb57c4
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.
5 source_ids = "//third_party/usb_ids/usb.ids"
6 generated_ids = "$target_gen_dir/usb_ids_gen.cc"
8 static_library("usb") {
9   output_name = "device_usb"
10   sources = [
11     "usb_ids.cc",
12     "usb_ids.h",
13     generated_ids,
14   ]
15   deps = [
16     ":usb_device_ids",
17     "//base",
18   ]
21 action("usb_device_ids") {
22   script = "//tools/usb_ids/usb_ids.py"
23   source_prereqs = [ source_ids ]
24   outputs = [ generated_ids ]
25   args = [
26     "-i", rebase_path(source_ids,  root_build_dir),
27     "-o", rebase_path(generated_ids, root_build_dir),
28   ]
30   # Only the device_usb target can depend on us.
31   # TODO(brettw) uncomment this when visibility is implemented in the pushed
32   # GN binary.
33   #visibility = [ ":usb" ]