OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |