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

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

Issue 1183443002: Reland: Introduce the devices Mojo app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn check... Created 5 years, 6 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
« no previous file with comments | « device/devices_app/devices_app.cc ('k') | device/devices_app/devices_apptest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'devices_app_lib',
12 'type': 'static_library',
13 'include_dirs': [
14 '../..',
15 ],
16 'sources': [
17 'devices_app.cc',
18 'devices_app.h',
19 'usb/device_impl.cc',
20 'usb/device_impl.h',
21 'usb/device_manager_impl.cc',
22 'usb/device_manager_impl.h',
23 'usb/public/cpp/device_manager_delegate.h',
24 'usb/type_converters.cc',
25 'usb/type_converters.h',
26 ],
27 'dependencies': [
28 '<(DEPTH)/device/usb/usb.gyp:device_usb',
29 'device_usb_mojo_bindings_lib',
30 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
31 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
32 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
33 ],
34 'export_dependent_settings': [
35 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
36 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
37 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
38 ],
39 },
40 {
41 'target_name': 'device_usb_mojo_bindings',
42 'type': 'none',
43 'variables': {
44 'mojom_files': [
45 'usb/public/interfaces/device.mojom',
46 'usb/public/interfaces/device_manager.mojom',
47 ],
48 },
49 'includes': [
50 '../../third_party/mojo/mojom_bindings_generator_explicit.gypi',
51 ],
52 },
53 {
54 'target_name': 'device_usb_mojo_bindings_lib',
55 'type': 'static_library',
56 'dependencies': [
57 'device_usb_mojo_bindings',
58 ],
59 },
60 ],
61 }
OLDNEW
« no previous file with comments | « device/devices_app/devices_app.cc ('k') | device/devices_app/devices_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698