| 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("//content/utility/utility.gni") | 5 import("//content/utility/utility.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) should depend on the public one. | 9 # internal content ones) should depend on the public one. |
| 10 visibility = [ "//content/public/utility:utility_sources" ] | 10 visibility = [ "//content/public/utility:utility_sources" ] |
| 11 | 11 |
| 12 sources = | 12 sources = |
| 13 rebase_path(content_utility_gypi_values.utility_sources, ".", "//content") | 13 rebase_path(content_utility_gypi_values.utility_sources, ".", "//content") |
| 14 | 14 |
| 15 configs += [ "//content:content_implementation" ] | 15 configs += [ "//content:content_implementation" ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 "//base", | 18 "//base", |
| 19 "//content:export", | 19 "//content:export", |
| 20 "//content/public/child:child_sources", | 20 "//content/public/child:child_sources", |
| 21 "//content/public/common:common_sources", | 21 "//content/public/common:common_sources", |
| 22 "//content/public/common:mojo_bindings", |
| 22 "//courgette:courgette_lib", | 23 "//courgette:courgette_lib", |
| 24 "//mojo/application/public/cpp", |
| 23 "//mojo/application/public/interfaces", | 25 "//mojo/application/public/interfaces", |
| 26 "//mojo/common", |
| 27 "//mojo/shell", |
| 24 "//third_party/WebKit/public:blink_headers", | 28 "//third_party/WebKit/public:blink_headers", |
| 29 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 30 "//url", |
| 25 ] | 31 ] |
| 26 } | 32 } |
| OLD | NEW |