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

Side by Side Diff: content/utility/BUILD.gn

Issue 2896913002: Reland [Mojo Video Capture] Hook up video capture service behind a feature flag (Closed)
Patch Set: Fixes for test/bot failures. Created 3 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 | « content/test/BUILD.gn ('k') | content/utility/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 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("//media/media_options.gni") 5 import("//media/media_options.gni")
6 6
7 source_set("utility") { 7 source_set("utility") {
8 # Only the public target should depend on this. All other targets (even 8 # Only the public target should depend on this. All other targets (even
9 # internal content ones other than test) should depend on the public one. 9 # internal content ones other than test) should depend on the public one.
10 visibility = [ 10 visibility = [
(...skipping 28 matching lines...) Expand all
39 "//mojo/public/cpp/bindings", 39 "//mojo/public/cpp/bindings",
40 "//ppapi/features", 40 "//ppapi/features",
41 "//sandbox", 41 "//sandbox",
42 "//services/data_decoder:lib", 42 "//services/data_decoder:lib",
43 "//services/data_decoder/public/cpp", 43 "//services/data_decoder/public/cpp",
44 "//services/service_manager", 44 "//services/service_manager",
45 "//services/service_manager/public/cpp", 45 "//services/service_manager/public/cpp",
46 "//services/service_manager/public/interfaces", 46 "//services/service_manager/public/interfaces",
47 "//services/shape_detection:lib", 47 "//services/shape_detection:lib",
48 "//services/shape_detection/public/interfaces", 48 "//services/shape_detection/public/interfaces",
49 "//services/video_capture:lib",
50 "//services/video_capture/public/interfaces:constants",
49 "//third_party/WebKit/public:blink_headers", 51 "//third_party/WebKit/public:blink_headers",
50 "//third_party/WebKit/public:mojo_bindings", 52 "//third_party/WebKit/public:mojo_bindings",
51 "//url", 53 "//url",
52 ] 54 ]
53 55
54 if (mojo_media_host == "utility") { 56 if (mojo_media_host == "utility") {
55 deps += [ "//media/mojo/services" ] 57 deps += [ "//media/mojo/services" ]
56 } 58 }
57 } 59 }
58 60
59 # See comment at the top of //content/BUILD.gn for how this works. 61 # See comment at the top of //content/BUILD.gn for how this works.
60 group("for_content_tests") { 62 group("for_content_tests") {
61 visibility = [ "//content/test/*" ] 63 visibility = [ "//content/test/*" ]
62 if (!is_component_build) { 64 if (!is_component_build) {
63 public_deps = [ 65 public_deps = [
64 ":utility", 66 ":utility",
65 ] 67 ]
66 } 68 }
67 } 69 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | content/utility/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698