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

Side by Side Diff: device/devices_app/BUILD.gn

Issue 1176383002: Revert of Introduce the devices Mojo app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/core/device_client.cc ('k') | device/devices_app/DEPS » ('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 2015 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 import("//mojo/public/mojo_application.gni")
6
7 source_set("lib") {
8 sources = [
9 "devices_app.cc",
10 "devices_app.h",
11 ]
12
13 deps = [
14 "//device/core",
15 "//device/usb",
16 "//device/usb/public/cpp",
17 "//device/usb/public/interfaces",
18 "//third_party/mojo/src/mojo/public/cpp/bindings",
19 "//url",
20 ]
21
22 public_deps = [
23 "//base",
24 "//mojo/application/public/cpp",
25 "//mojo/application/public/interfaces",
26 ]
27 }
28
29 mojo_native_application("devices") {
30 sources = [
31 "main.cc",
32 ]
33
34 deps = [
35 ":lib",
36 "//base",
37 "//mojo/application/public/cpp",
38 ]
39
40 public_deps = [
41 ":lib",
42 ]
43 }
44
45 mojo_native_application("apptests") {
46 output_name = "devices_apptests"
47
48 testonly = true
49
50 sources = [
51 "devices_apptest.cc",
52 ]
53
54 deps = [
55 "//base",
56 "//mojo/application/public/cpp:test_support",
57 ]
58
59 public_deps = [
60 ":lib",
61 "//device/usb/public/interfaces",
62 ]
63
64 data_deps = [ ":devices" ]
65 }
OLDNEW
« no previous file with comments | « device/core/device_client.cc ('k') | device/devices_app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698