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

Side by Side Diff: mojo/services/BUILD.gn

Issue 1108403008: Adds resource_provider::ResourceProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 7 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 | « mojo/mojo_application_package.gni ('k') | mojo/tools/data/apptests » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 group("services") { 7 group("services") {
8 deps = [ 8 deps = [
9 "//mojo/services/network/public/interfaces", 9 "//mojo/services/network/public/interfaces",
10 "//components/clipboard/public/interfaces", 10 "//components/clipboard/public/interfaces",
11 "//components/native_viewport/public/interfaces", 11 "//components/native_viewport/public/interfaces",
12 "//components/surfaces/public/interfaces", 12 "//components/surfaces/public/interfaces",
13 "//components/view_manager/public/interfaces", 13 "//components/view_manager/public/interfaces",
14 "//mandoline/services/navigation/public/interfaces", 14 "//mandoline/services/navigation/public/interfaces",
15 "//third_party/mojo_services/src/content_handler/public/interfaces", 15 "//third_party/mojo_services/src/content_handler/public/interfaces",
16 "//ui/mojo/events:interfaces", 16 "//ui/mojo/events:interfaces",
17 "//ui/mojo/geometry:interfaces", 17 "//ui/mojo/geometry:interfaces",
18 ] 18 ]
19 19
20 if (!is_component_build) { 20 if (!is_component_build) {
21 deps += [ 21 deps += [
22 "//components/core_services", 22 "//components/core_services",
23 "//components/html_viewer", 23 "//components/html_viewer",
24 "//components/kiosk_wm:window_manager", 24 "//components/kiosk_wm:window_manager",
25 "//components/native_viewport", 25 "//components/native_viewport",
26 "//components/resource_provider",
26 "//components/surfaces", 27 "//components/surfaces",
27 "//components/view_manager", 28 "//components/view_manager",
28 "//components/window_manager:lib", 29 "//components/window_manager:lib",
29 "//mojo/services/network", 30 "//mojo/services/network",
30 "//mojo/services/tracing", 31 "//mojo/services/tracing",
31 ] 32 ]
32 33
33 # TODO(GYP): Make this work. 34 # TODO(GYP): Make this work.
34 if (is_mac) { 35 if (is_mac) {
35 deps -= [ 36 deps -= [
36 "//components/html_viewer", 37 "//components/html_viewer",
37 "//components/kiosk_wm:window_manager", 38 "//components/kiosk_wm:window_manager",
38 "//components/native_viewport", 39 "//components/native_viewport",
39 "//components/view_manager", 40 "//components/view_manager",
40 "//components/window_manager:lib", 41 "//components/window_manager:lib",
41 ] 42 ]
42 } 43 }
43 } 44 }
44 } 45 }
45 46
46 group("tests") { 47 group("tests") {
47 testonly = true 48 testonly = true
48 deps = [ 49 deps = [
49 ":services", 50 ":services",
50 ] 51 ]
51 if (!is_component_build) { 52 if (!is_component_build) {
52 deps += [ 53 deps += [
53 "//components/html_viewer:html_viewer_unittests", 54 "//components/html_viewer:html_viewer_unittests",
55 "//components/resource_provider:tests",
54 "//components/view_manager:view_manager_service_unittests", 56 "//components/view_manager:view_manager_service_unittests",
55 ] 57 ]
56 58
57 # TODO(GYP): Make this work. 59 # TODO(GYP): Make this work.
58 if (is_mac) { 60 if (is_mac) {
59 deps -= [ 61 deps -= [
60 "//components/html_viewer:html_viewer_unittests", 62 "//components/html_viewer:html_viewer_unittests",
61 "//components/view_manager:view_manager_service_unittests", 63 "//components/view_manager:view_manager_service_unittests",
62 ] 64 ]
63 } 65 }
64 } 66 }
65 } 67 }
66 68
67 group("apptests") { 69 group("apptests") {
68 testonly = true 70 testonly = true
69 deps = [ 71 deps = [
70 ":services", 72 ":services",
71 ] 73 ]
72 if (!is_component_build) { 74 if (!is_component_build) {
73 deps += [ 75 deps += [
74 "//components/clipboard:apptests", 76 "//components/clipboard:apptests",
75 "//components/html_viewer:apptests", 77 "//components/html_viewer:apptests",
78 "//components/resource_provider:apptests",
76 "//components/view_manager:apptests", 79 "//components/view_manager:apptests",
77 "//components/window_manager:apptests", 80 "//components/window_manager:apptests",
78 "//mojo/services/network:apptests", 81 "//mojo/services/network:apptests",
79 ] 82 ]
80 83
81 # TODO(GYP): Make this work. 84 # TODO(GYP): Make this work.
82 if (is_mac) { 85 if (is_mac) {
83 deps -= [ 86 deps -= [
84 "//components/html_viewer:apptests", 87 "//components/html_viewer:apptests",
85 "//components/view_manager:apptests", 88 "//components/view_manager:apptests",
86 "//components/window_manager:apptests", 89 "//components/window_manager:apptests",
87 ] 90 ]
88 } 91 }
89 } 92 }
90 } 93 }
OLDNEW
« no previous file with comments | « mojo/mojo_application_package.gni ('k') | mojo/tools/data/apptests » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698