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

Side by Side Diff: device/usb/usb.gyp

Issue 674703002: Linux: Dynamically load libudev. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scoped_udev
Patch Set: rebase to head, which includes third_party/libudev already Created 6 years, 1 month 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
« no previous file with comments | « device/usb/BUILD.gn ('k') | third_party/libusb/BUILD.gn » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 '<(usb_ids_py_path)', 55 '<(usb_ids_py_path)',
56 '-i', '<(usb_ids_path)', 56 '-i', '<(usb_ids_path)',
57 '-o', '<@(_outputs)', 57 '-o', '<@(_outputs)',
58 ], 58 ],
59 'process_outputs_as_sources': 1, 59 'process_outputs_as_sources': 1,
60 }, 60 },
61 ], 61 ],
62 'conditions': [ 62 'conditions': [
63 ['use_udev == 1', { 63 ['use_udev == 1', {
64 'dependencies': [ 64 'dependencies': [
65 '../../build/linux/system.gyp:udev', 65 '../udev_linux/udev.gyp:udev_linux',
66 ], 66 ],
67 }], 67 }],
68 ['chromeos==1', { 68 ['chromeos==1', {
69 'dependencies': [ 69 'dependencies': [
70 '../../chromeos/chromeos.gyp:chromeos', 70 '../../chromeos/chromeos.gyp:chromeos',
71 ], 71 ],
72 }], 72 }],
73 ] 73 ]
74 }, 74 },
75 ], 75 ],
76 } 76 }
OLDNEW
« no previous file with comments | « device/usb/BUILD.gn ('k') | third_party/libusb/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698