| 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/browser/browser.gni") | 5 import("//content/browser/browser.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
| 9 group("browser") { | 9 group("browser") { |
| 10 if (is_component_build) { | 10 if (is_component_build) { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 if (use_aura) { | 42 if (use_aura) { |
| 43 sources -= [ "context_factory.h" ] | 43 sources -= [ "context_factory.h" ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 configs += [ "//content:content_implementation" ] | 46 configs += [ "//content:content_implementation" ] |
| 47 | 47 |
| 48 public_deps = [ | 48 public_deps = [ |
| 49 "//content/public/common:mojo_bindings", | 49 "//content/public/common:mojo_bindings", |
| 50 # We expose skia headers in the public API. | 50 # We expose skia headers in the public API. |
| 51 "//skia", | 51 "//skia", |
| 52 "//mojo/public/cpp/system", | 52 "//third_party/mojo/src/mojo/public/cpp/system", |
| 53 ] | 53 ] |
| 54 deps = [ | 54 deps = [ |
| 55 "//content/browser", | 55 "//content/browser", |
| 56 "//content/public/common:common_sources", | 56 "//content/public/common:common_sources", |
| 57 "//net", | 57 "//net", |
| 58 "//ui/accessibility", | 58 "//ui/accessibility", |
| 59 "//ui/base", | 59 "//ui/base", |
| 60 "//ui/events", | 60 "//ui/events", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 allow_circular_includes_from = [ | 63 allow_circular_includes_from = [ |
| 64 # This target is a pair with content/browser. They always go together and | 64 # This target is a pair with content/browser. They always go together and |
| 65 # include headers from each other. | 65 # include headers from each other. |
| 66 "//content/browser", | 66 "//content/browser", |
| 67 ] | 67 ] |
| 68 } | 68 } |
| OLD | NEW |