| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 source_set("lib") { | 7 source_set("lib") { |
| 8 sources = [ | 8 sources = [ |
| 9 "devices_app.cc", | 9 "devices_app.cc", |
| 10 "devices_app.h", | 10 "devices_app.h", |
| 11 "usb/device_impl.cc", | 11 "usb/device_impl.cc", |
| 12 "usb/device_impl.h", | 12 "usb/device_impl.h", |
| 13 "usb/device_manager_impl.cc", | 13 "usb/device_manager_impl.cc", |
| 14 "usb/device_manager_impl.h", | 14 "usb/device_manager_impl.h", |
| 15 "usb/type_converters.cc", | 15 "usb/type_converters.cc", |
| 16 "usb/type_converters.h", | 16 "usb/type_converters.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//device/core", | 20 "//device/core", |
| 21 "//device/devices_app/usb/public/interfaces", | 21 "//device/devices_app/usb/public/interfaces", |
| 22 "//device/usb", | 22 "//device/usb", |
| 23 "//mojo/common", |
| 23 "//mojo/public/cpp/bindings", | 24 "//mojo/public/cpp/bindings", |
| 24 "//mojo/public/cpp/bindings:callback", | 25 "//mojo/public/cpp/bindings:callback", |
| 25 "//net", | 26 "//net", |
| 26 "//url", | 27 "//url", |
| 27 ] | 28 ] |
| 28 | 29 |
| 29 public_deps = [ | 30 public_deps = [ |
| 30 "//base", | 31 "//base", |
| 31 "//mojo/application/public/cpp", | 32 "//mojo/application/public/cpp", |
| 32 "//mojo/application/public/interfaces", | 33 "//mojo/application/public/interfaces", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 public_deps = [ | 68 public_deps = [ |
| 68 ":lib", | 69 ":lib", |
| 69 "//device/devices_app/usb/public/interfaces", | 70 "//device/devices_app/usb/public/interfaces", |
| 70 ] | 71 ] |
| 71 | 72 |
| 72 data_deps = [ | 73 data_deps = [ |
| 73 ":devices", | 74 ":devices", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| 76 } | 77 } |
| OLD | NEW |