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

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

Issue 1316203006: Convert DeviceManagerDelegate to PermissionProvider mojo interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment and move ctor. Created 5 years, 3 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/usb/device_manager_impl.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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'devices_app_lib', 11 'target_name': 'devices_app_lib',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '../..', 14 '../..',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'devices_app.cc', 17 'devices_app.cc',
18 'devices_app.h', 18 'devices_app.h',
19 'usb/device_impl.cc', 19 'usb/device_impl.cc',
20 'usb/device_impl.h', 20 'usb/device_impl.h',
21 'usb/device_manager_impl.cc', 21 'usb/device_manager_impl.cc',
22 'usb/device_manager_impl.h', 22 'usb/device_manager_impl.h',
23 'usb/public/cpp/device_manager_delegate.h',
24 'usb/type_converters.cc', 23 'usb/type_converters.cc',
25 'usb/type_converters.h', 24 'usb/type_converters.h',
26 ], 25 ],
27 'dependencies': [ 26 'dependencies': [
28 'device_usb_mojo_bindings_lib', 27 'device_usb_mojo_bindings_lib',
29 '<(DEPTH)/device/core/core.gyp:device_core', 28 '<(DEPTH)/device/core/core.gyp:device_core',
30 '<(DEPTH)/device/usb/usb.gyp:device_usb', 29 '<(DEPTH)/device/usb/usb.gyp:device_usb',
31 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', 30 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
32 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', 31 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
33 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 32 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
34 ], 33 ],
35 'export_dependent_settings': [ 34 'export_dependent_settings': [
36 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', 35 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
37 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', 36 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
38 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 37 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
39 ], 38 ],
40 }, 39 },
41 { 40 {
42 'target_name': 'device_usb_mojo_bindings', 41 'target_name': 'device_usb_mojo_bindings',
43 'type': 'none', 42 'type': 'none',
44 'variables': { 43 'variables': {
45 'mojom_files': [ 44 'mojom_files': [
46 'usb/public/interfaces/device.mojom', 45 'usb/public/interfaces/device.mojom',
47 'usb/public/interfaces/device_manager.mojom', 46 'usb/public/interfaces/device_manager.mojom',
47 'usb/public/interfaces/permission_provider.mojom',
48 ], 48 ],
49 }, 49 },
50 'includes': [ 50 'includes': [
51 '../../third_party/mojo/mojom_bindings_generator_explicit.gypi', 51 '../../third_party/mojo/mojom_bindings_generator_explicit.gypi',
52 ], 52 ],
53 }, 53 },
54 { 54 {
55 'target_name': 'device_usb_mojo_bindings_lib', 55 'target_name': 'device_usb_mojo_bindings_lib',
56 'type': 'static_library', 56 'type': 'static_library',
57 'dependencies': [ 57 'dependencies': [
(...skipping 17 matching lines...) Expand all
75 'sources': [ 75 'sources': [
76 'public/cpp/devices_app_factory.cc', 76 'public/cpp/devices_app_factory.cc',
77 'public/cpp/devices_app_factory.h', 77 'public/cpp/devices_app_factory.h',
78 ], 78 ],
79 'dependencies': [ 79 'dependencies': [
80 'devices_app_lib', 80 'devices_app_lib',
81 ], 81 ],
82 }, 82 },
83 ], 83 ],
84 } 84 }
OLDNEW
« no previous file with comments | « device/devices_app/devices_app.cc ('k') | device/devices_app/usb/device_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698