| 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 # See //content/BUILD.gn for how this works. | 5 # See //content/BUILD.gn for how this works. |
| 6 group("utility") { | 6 group("utility") { |
| 7 if (is_component_build) { | 7 if (is_component_build) { |
| 8 deps = [ "//content" ] | 8 deps = [ "//content" ] |
| 9 } else { | 9 } else { |
| 10 deps = [ ":utility_sources" ] | 10 deps = [ ":utility_sources" ] |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "//base", | 28 "//base", |
| 29 "//content:export", | 29 "//content:export", |
| 30 "//content/public/common:common_sources", | 30 "//content/public/common:common_sources", |
| 31 "//content/utility", | 31 "//content/utility", |
| 32 "//ipc", | 32 "//ipc", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 allow_circular_includes_from = [ | 35 allow_circular_includes_from = [ |
| 36 # This target is a pair with content/browser. They always go together and | 36 # This target is a pair with content/browser. They always go together and |
| 37 # include headers from each other. | 37 # include headers from each other. |
| 38 # TODO(brettw) enable this when this permits non-dependent targets. | 38 "//content/utility", |
| 39 #"//content/utility", | |
| 40 ] | 39 ] |
| 41 } | 40 } |
| 42 | 41 |
| OLD | NEW |