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

Side by Side Diff: device/usb/BUILD.gn

Issue 246303005: Make GN's "check" run cleanly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_ids = "//third_party/usb_ids/usb.ids" 5 source_ids = "//third_party/usb_ids/usb.ids"
6 generated_ids = "$target_gen_dir/usb_ids_gen.cc" 6 generated_ids = "$target_gen_dir/usb_ids_gen.cc"
7 7
8 static_library("usb") { 8 static_library("usb") {
9 output_name = "device_usb" 9 output_name = "device_usb"
10 sources = [ 10 sources = [
(...skipping 10 matching lines...) Expand all
21 action("usb_device_ids") { 21 action("usb_device_ids") {
22 script = "//tools/usb_ids/usb_ids.py" 22 script = "//tools/usb_ids/usb_ids.py"
23 source_prereqs = [ source_ids ] 23 source_prereqs = [ source_ids ]
24 outputs = [ generated_ids ] 24 outputs = [ generated_ids ]
25 args = [ 25 args = [
26 "-i", rebase_path(source_ids, root_build_dir), 26 "-i", rebase_path(source_ids, root_build_dir),
27 "-o", rebase_path(generated_ids, root_build_dir), 27 "-o", rebase_path(generated_ids, root_build_dir),
28 ] 28 ]
29 29
30 # Only the device_usb target can depend on us. 30 # Only the device_usb target can depend on us.
31 # TODO(brettw) uncomment this when visibility is implemented in the pushed 31 visibility = [ ":usb" ]
32 # GN binary.
33 #visibility = [ ":usb" ]
34 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698