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 16 matching lines...) Expand all Loading... |
27 "//content") | 27 "//content") |
28 | 28 |
29 configs += [ | 29 configs += [ |
30 "//build/config:precompiled_headers", | 30 "//build/config:precompiled_headers", |
31 "//content:content_implementation", | 31 "//content:content_implementation", |
32 ] | 32 ] |
33 | 33 |
34 public_deps = [ | 34 public_deps = [ |
35 "//mojo/public/cpp/bindings", | 35 "//mojo/public/cpp/bindings", |
36 "//mojo/public/cpp/system", | 36 "//mojo/public/cpp/system", |
| 37 "//services/shell/public/cpp", |
37 | 38 |
38 # We expose skia headers in the public API. | 39 # We expose skia headers in the public API. |
39 "//skia", | 40 "//skia", |
40 "//third_party/WebKit/public:mojo_bindings", | 41 "//third_party/WebKit/public:mojo_bindings", |
41 ] | 42 ] |
42 deps = [ | 43 deps = [ |
43 "//cc", | 44 "//cc", |
44 "//content/browser", # Must not be public_deps! | 45 "//content/browser", # Must not be public_deps! |
45 "//content/public/common:common_sources", | 46 "//content/public/common:common_sources", |
46 "//device/power_save_blocker", | 47 "//device/power_save_blocker", |
(...skipping 17 matching lines...) Expand all Loading... |
64 | 65 |
65 if (is_android) { | 66 if (is_android) { |
66 deps += [ "//ui/android" ] | 67 deps += [ "//ui/android" ] |
67 } | 68 } |
68 | 69 |
69 if (use_aura) { | 70 if (use_aura) { |
70 sources -= [ "context_factory.h" ] | 71 sources -= [ "context_factory.h" ] |
71 deps += [ "//ui/aura" ] | 72 deps += [ "//ui/aura" ] |
72 } | 73 } |
73 } | 74 } |
OLD | NEW |