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

Unified Diff: device/devices_app/devices_app.gyp

Issue 1165223004: Introduce the devices Mojo app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move mojo USB sources into devices_app to keep mojo dependencies separated from device/usb 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/devices_app/devices_app.gyp
diff --git a/device/devices_app/devices_app.gyp b/device/devices_app/devices_app.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..8cf952db9b1533ff04d6f35b0a71ed89d0d53e41
--- /dev/null
+++ b/device/devices_app/devices_app.gyp
@@ -0,0 +1,61 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'devices_app_lib',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [
+ 'devices_app.cc',
+ 'devices_app.h',
+ 'usb/device_impl.cc',
+ 'usb/device_impl.h',
+ 'usb/device_manager_impl.cc',
+ 'usb/device_manager_impl.h',
+ 'usb/public/cpp/device_manager_delegate.h',
+ 'usb/type_converters.cc',
+ 'usb/type_converters.h',
+ ],
+ 'dependencies': [
+ '<(DEPTH)/device/usb/usb.gyp:device_usb',
+ 'device_usb_mojo_bindings_lib',
+ '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
+ '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
+ '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
+ ],
+ 'export_dependent_settings': [
+ '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
+ '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
+ '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
+ ],
+ },
+ {
+ 'target_name': 'device_usb_mojo_bindings',
+ 'type': 'none',
+ 'variables': {
+ 'mojom_files': [
+ 'usb/public/interfaces/device.mojom',
+ 'usb/public/interfaces/device_manager.mojom',
+ ],
+ },
+ 'includes': [
+ '../../third_party/mojo/mojom_bindings_generator_explicit.gypi',
+ ],
+ },
+ {
+ 'target_name': 'device_usb_mojo_bindings_lib',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'device_usb_mojo_bindings',
+ ],
+ },
+ ],
+}
« 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