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

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

Issue 2652273002: Remove all service manifests from data_deps (Closed)
Patch Set: . Created 3 years, 10 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 | « services/ui/test_wm/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//services/service_manager/public/cpp/service.gni") 5 import("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/public/service_manifest.gni") 6 import("//services/service_manager/public/service_manifest.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 service("video_capture") { 9 service("video_capture") {
10 sources = [ 10 sources = [
11 "service_impl.cc", 11 "service_impl.cc",
12 "service_impl.h", 12 "service_impl.h",
13 "service_main.cc", 13 "service_main.cc",
14 ] 14 ]
15 15
16 deps = [ 16 deps = [
17 ":lib", 17 ":lib",
18 "//mojo/public/cpp/system", 18 "//mojo/public/cpp/system",
19 ] 19 ]
20
21 data_deps = [
22 ":manifest",
23 ]
24 } 20 }
25 21
26 service_manifest("manifest") { 22 service_manifest("manifest") {
27 name = "video_capture" 23 name = "video_capture"
28 source = "service_manifest.json" 24 source = "service_manifest.json"
29 } 25 }
30 26
31 source_set("lib") { 27 source_set("lib") {
32 sources = [ 28 sources = [
33 "device_factory_media_to_mojo_adapter.cc", 29 "device_factory_media_to_mojo_adapter.cc",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 ":video_capture", 71 ":video_capture",
76 "//base/test:test_support", 72 "//base/test:test_support",
77 "//media/capture/mojo:capture_types", 73 "//media/capture/mojo:capture_types",
78 "//services/service_manager/public/cpp", 74 "//services/service_manager/public/cpp",
79 "//services/service_manager/public/cpp:service_test_support", 75 "//services/service_manager/public/cpp:service_test_support",
80 "//services/service_manager/public/cpp/test:run_all_service_tests", 76 "//services/service_manager/public/cpp/test:run_all_service_tests",
81 "//testing/gmock", 77 "//testing/gmock",
82 "//testing/gtest", 78 "//testing/gtest",
83 "//ui/gfx:test_support", 79 "//ui/gfx:test_support",
84 ] 80 ]
85
86 data_deps = [
87 ":unittest_manifest",
88 ]
89 } 81 }
90 82
91 service_manifest("unittest_manifest") { 83 service_manifest("unittest_manifest") {
92 name = "video_capture_unittests" 84 name = "video_capture_unittests"
93 source = "test/service_unittest_manifest.json" 85 source = "test/service_unittest_manifest.json"
94 } 86 }
OLDNEW
« no previous file with comments | « services/ui/test_wm/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698