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

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

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 | « content/utility/DEPS ('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
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",
(...skipping 11 matching lines...) Expand all
22 "//device/usb", 22 "//device/usb",
23 "//mojo/common", 23 "//mojo/common",
24 "//mojo/public/cpp/bindings", 24 "//mojo/public/cpp/bindings",
25 "//mojo/public/cpp/bindings:callback", 25 "//mojo/public/cpp/bindings:callback",
26 "//net", 26 "//net",
27 "//url", 27 "//url",
28 ] 28 ]
29 29
30 public_deps = [ 30 public_deps = [
31 "//base", 31 "//base",
32 "//mojo/application/public/cpp", 32 "//mojo/shell/public/cpp",
33 "//mojo/application/public/interfaces", 33 "//mojo/shell/public/interfaces",
34 ] 34 ]
35 } 35 }
36 36
37 if (!is_component_build) { 37 if (!is_component_build) {
38 mojo_native_application("devices") { 38 mojo_native_application("devices") {
39 sources = [ 39 sources = [
40 "main.cc", 40 "main.cc",
41 ] 41 ]
42 42
43 deps = [ 43 deps = [
44 "//base", 44 "//base",
45 "//device/devices_app/public/cpp:factory", 45 "//device/devices_app/public/cpp:factory",
46 "//mojo/application/public/cpp", 46 "//mojo/shell/public/cpp",
47 ] 47 ]
48 48
49 public_deps = [ 49 public_deps = [
50 ":lib", 50 ":lib",
51 ] 51 ]
52 } 52 }
53 53
54 mojo_native_application("apptests") { 54 mojo_native_application("apptests") {
55 output_name = "devices_apptests" 55 output_name = "devices_apptests"
56 56
57 testonly = true 57 testonly = true
58 58
59 sources = [ 59 sources = [
60 "devices_apptest.cc", 60 "devices_apptest.cc",
61 ] 61 ]
62 62
63 deps = [ 63 deps = [
64 "//base", 64 "//base",
65 "//mojo/application/public/cpp:test_support", 65 "//mojo/shell/public/cpp:test_support",
66 ] 66 ]
67 67
68 public_deps = [ 68 public_deps = [
69 ":lib", 69 ":lib",
70 "//device/devices_app/usb/public/interfaces", 70 "//device/devices_app/usb/public/interfaces",
71 ] 71 ]
72 72
73 data_deps = [ 73 data_deps = [
74 ":devices", 74 ":devices",
75 ] 75 ]
76 } 76 }
77 } 77 }
OLDNEW
« no previous file with comments | « content/utility/DEPS ('k') | device/devices_app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698