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

Side by Side Diff: components/usb_service.gypi

Issue 369893008: Move the serial API to extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing dependency from usb_service to chromeos Created 6 years, 5 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 | « chrome/common/extensions/api/serial.idl ('k') | extensions/browser/api/api_resource_manager.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'targets': [{ 6 'targets': [{
7 'target_name': 'usb_service', 7 'target_name': 'usb_service',
8 'type': '<(component)', 8 'type': '<(component)',
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 23 matching lines...) Expand all
34 'usb_service/usb_interface_impl.cc', 34 'usb_service/usb_interface_impl.cc',
35 'usb_service/usb_interface_impl.h', 35 'usb_service/usb_interface_impl.h',
36 'usb_service/usb_service.h', 36 'usb_service/usb_service.h',
37 'usb_service/usb_service_impl.cc', 37 'usb_service/usb_service_impl.cc',
38 ], 38 ],
39 'conditions': [ 39 'conditions': [
40 ['OS == "linux"', { 40 ['OS == "linux"', {
41 'dependencies': [ 41 'dependencies': [
42 '../build/linux/system.gyp:udev', 42 '../build/linux/system.gyp:udev',
43 ], 43 ],
44 }] 44 }],
45 ['chromeos==1', {
46 'dependencies': [
47 '../chromeos/chromeos.gyp:chromeos',
48 ],
49 }],
45 ] 50 ]
46 }], 51 }],
47 } 52 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/serial.idl ('k') | extensions/browser/api/api_resource_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698