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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 50 |
51 # We expose skia headers in the public API. | 51 # We expose skia headers in the public API. |
52 "//skia", | 52 "//skia", |
| 53 "//third_party/mojo/src/mojo/public/cpp/bindings", |
53 "//third_party/mojo/src/mojo/public/cpp/system", | 54 "//third_party/mojo/src/mojo/public/cpp/system", |
54 ] | 55 ] |
55 deps = [ | 56 deps = [ |
56 "//content/browser", | 57 "//content/browser", |
57 "//content/public/common:common_sources", | 58 "//content/public/common:common_sources", |
58 "//net", | 59 "//net", |
59 "//ui/accessibility", | 60 "//ui/accessibility", |
60 "//ui/base", | 61 "//ui/base", |
61 "//ui/events", | 62 "//ui/events", |
62 ] | 63 ] |
63 | 64 |
64 allow_circular_includes_from = [ | 65 allow_circular_includes_from = [ |
65 # This target is a pair with content/browser. They always go together and | 66 # This target is a pair with content/browser. They always go together and |
66 # include headers from each other. | 67 # include headers from each other. |
67 "//content/browser", | 68 "//content/browser", |
68 ] | 69 ] |
69 } | 70 } |
OLD | NEW |