| 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 19 matching lines...) Expand all Loading... |
| 30 deps = [ | 30 deps = [ |
| 31 "//base", | 31 "//base", |
| 32 "//content:export", | 32 "//content:export", |
| 33 "//content/child", | 33 "//content/child", |
| 34 "//content/public/child:child_sources", | 34 "//content/public/child:child_sources", |
| 35 "//content/public/common:common_sources", | 35 "//content/public/common:common_sources", |
| 36 "//mojo/common", | 36 "//mojo/common", |
| 37 "//mojo/public/cpp/bindings", | 37 "//mojo/public/cpp/bindings", |
| 38 "//ppapi/features", | 38 "//ppapi/features", |
| 39 "//sandbox", | 39 "//sandbox", |
| 40 "//services/data_decoder:lib", |
| 41 "//services/data_decoder/public/cpp", |
| 40 "//services/service_manager", | 42 "//services/service_manager", |
| 41 "//services/service_manager/public/cpp", | 43 "//services/service_manager/public/cpp", |
| 42 "//services/service_manager/public/interfaces", | 44 "//services/service_manager/public/interfaces", |
| 43 "//services/shape_detection:lib", | 45 "//services/shape_detection:lib", |
| 44 "//services/shape_detection/public/interfaces", | 46 "//services/shape_detection/public/interfaces", |
| 45 "//third_party/WebKit/public:blink_headers", | 47 "//third_party/WebKit/public:blink_headers", |
| 46 "//third_party/WebKit/public:mojo_bindings", | 48 "//third_party/WebKit/public:mojo_bindings", |
| 47 "//url", | 49 "//url", |
| 48 ] | 50 ] |
| 49 | 51 |
| 50 if (mojo_media_host == "utility") { | 52 if (mojo_media_host == "utility") { |
| 51 deps += [ "//media/mojo/services" ] | 53 deps += [ "//media/mojo/services" ] |
| 52 } | 54 } |
| 53 } | 55 } |
| 54 | 56 |
| 55 # See comment at the top of //content/BUILD.gn for how this works. | 57 # See comment at the top of //content/BUILD.gn for how this works. |
| 56 group("for_content_tests") { | 58 group("for_content_tests") { |
| 57 visibility = [ "//content/test/*" ] | 59 visibility = [ "//content/test/*" ] |
| 58 if (!is_component_build) { | 60 if (!is_component_build) { |
| 59 public_deps = [ | 61 public_deps = [ |
| 60 ":utility", | 62 ":utility", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| 63 } | 65 } |
| OLD | NEW |