| 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/cpp", | |
| 22 "//device/devices_app/usb/public/interfaces", | 21 "//device/devices_app/usb/public/interfaces", |
| 23 "//device/usb", | 22 "//device/usb", |
| 24 "//net", | 23 "//net", |
| 25 "//third_party/mojo/src/mojo/public/cpp/bindings", | 24 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 26 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 25 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 27 "//url", | 26 "//url", |
| 28 ] | 27 ] |
| 29 | 28 |
| 30 public_deps = [ | 29 public_deps = [ |
| 31 "//base", | 30 "//base", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "//mojo/application/public/cpp:test_support", | 63 "//mojo/application/public/cpp:test_support", |
| 65 ] | 64 ] |
| 66 | 65 |
| 67 public_deps = [ | 66 public_deps = [ |
| 68 ":lib", | 67 ":lib", |
| 69 "//device/devices_app/usb/public/interfaces", | 68 "//device/devices_app/usb/public/interfaces", |
| 70 ] | 69 ] |
| 71 | 70 |
| 72 data_deps = [ ":devices" ] | 71 data_deps = [ ":devices" ] |
| 73 } | 72 } |
| OLD | NEW |