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

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

Issue 164773005: Pull GN @ 252040, update calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: long line Created 6 years, 10 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
« no previous file with comments | « tools/gn/secondary/chrome/BUILD.gn ('k') | tools/gn/secondary/tools/grit/grit_rule.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("device_usb") { 8 static_library("device_usb") {
9 sources = [ 9 sources = [
10 "usb_ids.cc", 10 "usb_ids.cc",
11 "usb_ids.h", 11 "usb_ids.h",
12 generated_ids, 12 generated_ids,
13 ] 13 ]
14 deps = [ ":device_usb_ids" ] 14 deps = [ ":device_usb_ids" ]
15 } 15 }
16 16
17 custom("device_usb_ids") { 17 custom("device_usb_ids") {
18 script = "//tools/usb_ids/usb_ids.py" 18 script = "//tools/usb_ids/usb_ids.py"
19 source_prereqs = [ source_ids ] 19 source_prereqs = [ source_ids ]
20 outputs = [ generated_ids ] 20 outputs = [ generated_ids ]
21 args = [ 21 args = [
22 "-i", rebase_path(source_ids, ".", root_build_dir), 22 "-i", rebase_path(source_ids, root_build_dir),
23 "-o", rebase_path(generated_ids, ".", root_build_dir), 23 "-o", rebase_path(generated_ids, root_build_dir),
24 ] 24 ]
25 } 25 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/chrome/BUILD.gn ('k') | tools/gn/secondary/tools/grit/grit_rule.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698