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

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

Issue 2900583002: Revert of [Mojo Video Capture] Hook up video capture service behind a feature flag (Closed)
Patch Set: Rebase 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",
51 "//third_party/WebKit/public:blink_headers", 49 "//third_party/WebKit/public:blink_headers",
52 "//third_party/WebKit/public:mojo_bindings", 50 "//third_party/WebKit/public:mojo_bindings",
53 "//url", 51 "//url",
54 ] 52 ]
55 53
56 if (mojo_media_host == "utility") { 54 if (mojo_media_host == "utility") {
57 deps += [ "//media/mojo/services" ] 55 deps += [ "//media/mojo/services" ]
58 } 56 }
59 } 57 }
60 58
61 # See comment at the top of //content/BUILD.gn for how this works. 59 # See comment at the top of //content/BUILD.gn for how this works.
62 group("for_content_tests") { 60 group("for_content_tests") {
63 visibility = [ "//content/test/*" ] 61 visibility = [ "//content/test/*" ]
64 if (!is_component_build) { 62 if (!is_component_build) {
65 public_deps = [ 63 public_deps = [
66 ":utility", 64 ":utility",
67 ] 65 ]
68 } 66 }
69 } 67 }
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