| 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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 configs += [ "//content:content_implementation" ] | 28 configs += [ "//content:content_implementation" ] |
| 29 | 29 |
| 30 deps = [ | 30 deps = [ |
| 31 "//base", | 31 "//base", |
| 32 "//content:export", | 32 "//content:export", |
| 33 "//content/child", | 33 "//content/child", |
| 34 "//content/network:network_sources", | 34 "//content/network:network_sources", |
| 35 "//content/public/child:child_sources", | 35 "//content/public/child:child_sources", |
| 36 "//content/public/common:common_sources", | 36 "//content/public/common:common_sources", |
| 37 "//media/mojo:features", |
| 37 "//mojo/common", | 38 "//mojo/common", |
| 38 "//mojo/public/cpp/bindings", | 39 "//mojo/public/cpp/bindings", |
| 39 "//ppapi/features", | 40 "//ppapi/features", |
| 40 "//sandbox", | 41 "//sandbox", |
| 41 "//services/data_decoder:lib", | 42 "//services/data_decoder:lib", |
| 42 "//services/data_decoder/public/cpp", | 43 "//services/data_decoder/public/cpp", |
| 43 "//services/service_manager", | 44 "//services/service_manager", |
| 44 "//services/service_manager/public/cpp", | 45 "//services/service_manager/public/cpp", |
| 45 "//services/service_manager/public/interfaces", | 46 "//services/service_manager/public/interfaces", |
| 46 "//services/shape_detection:lib", | 47 "//services/shape_detection:lib", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 59 | 60 |
| 60 # 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. |
| 61 group("for_content_tests") { | 62 group("for_content_tests") { |
| 62 visibility = [ "//content/test/*" ] | 63 visibility = [ "//content/test/*" ] |
| 63 if (!is_component_build) { | 64 if (!is_component_build) { |
| 64 public_deps = [ | 65 public_deps = [ |
| 65 ":utility", | 66 ":utility", |
| 66 ] | 67 ] |
| 67 } | 68 } |
| 68 } | 69 } |
| OLD | NEW |