| 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 28 matching lines...) Expand all Loading... |
| 39 "//content") | 39 "//content") |
| 40 } | 40 } |
| 41 | 41 |
| 42 if (use_aura) { | 42 if (use_aura) { |
| 43 sources -= [ "context_factory.h" ] | 43 sources -= [ "context_factory.h" ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 configs += [ | 46 configs += [ |
| 47 "//build/config:precompiled_headers", | 47 "//build/config:precompiled_headers", |
| 48 "//content:content_implementation", | 48 "//content:content_implementation", |
| 49 "//content/public/common:mojo_shell_client", | |
| 50 ] | 49 ] |
| 51 | 50 |
| 52 public_deps = [ | 51 public_deps = [ |
| 53 "//content/public/common:mojo_bindings", | 52 "//content/public/common:mojo_bindings", |
| 54 "//mojo/public/cpp/bindings", | 53 "//mojo/public/cpp/bindings", |
| 55 "//mojo/public/cpp/system", | 54 "//mojo/public/cpp/system", |
| 56 | 55 |
| 57 # We expose skia headers in the public API. | 56 # We expose skia headers in the public API. |
| 58 "//skia", | 57 "//skia", |
| 59 ] | 58 ] |
| 60 deps = [ | 59 deps = [ |
| 61 "//content/browser", | 60 "//content/browser", |
| 62 "//content/public/common:common_sources", | 61 "//content/public/common:common_sources", |
| 63 "//net", | 62 "//net", |
| 64 "//ui/accessibility", | 63 "//ui/accessibility", |
| 65 "//ui/base", | 64 "//ui/base", |
| 66 "//ui/events", | 65 "//ui/events", |
| 67 ] | 66 ] |
| 68 | 67 |
| 69 allow_circular_includes_from = [ | 68 allow_circular_includes_from = [ |
| 70 # This target is a pair with content/browser. They always go together and | 69 # This target is a pair with content/browser. They always go together and |
| 71 # include headers from each other. | 70 # include headers from each other. |
| 72 "//content/browser", | 71 "//content/browser", |
| 73 ] | 72 ] |
| 74 } | 73 } |
| OLD | NEW |