| 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 23 matching lines...) Expand all Loading... |
| 34 public_deps = [ | 34 public_deps = [ |
| 35 "//content/public/common:mojo_bindings", | 35 "//content/public/common:mojo_bindings", |
| 36 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
| 37 "//mojo/public/cpp/system", | 37 "//mojo/public/cpp/system", |
| 38 | 38 |
| 39 # We expose skia headers in the public API. | 39 # We expose skia headers in the public API. |
| 40 "//skia", | 40 "//skia", |
| 41 ] | 41 ] |
| 42 deps = [ | 42 deps = [ |
| 43 "//cc", | 43 "//cc", |
| 44 "//components/permissions", | |
| 45 "//content/browser", # Must not be public_deps! | 44 "//content/browser", # Must not be public_deps! |
| 46 "//content/public/common:common_sources", | 45 "//content/public/common:common_sources", |
| 47 "//gpu", | 46 "//gpu", |
| 48 "//media", | 47 "//media", |
| 49 "//net", | 48 "//net", |
| 50 "//ppapi/c", | 49 "//ppapi/c", |
| 51 "//storage/browser", | 50 "//storage/browser", |
| 52 "//ui/accessibility", | 51 "//ui/accessibility", |
| 53 "//ui/base", | 52 "//ui/base", |
| 54 "//ui/events", | 53 "//ui/events", |
| 55 "//ui/gl", | 54 "//ui/gl", |
| 56 "//ui/surface", | 55 "//ui/surface", |
| 57 ] | 56 ] |
| 58 | 57 |
| 59 allow_circular_includes_from = [ | 58 allow_circular_includes_from = [ |
| 60 # This target is a pair with content/browser. They always go together and | 59 # This target is a pair with content/browser. They always go together and |
| 61 # include headers from each other. | 60 # include headers from each other. |
| 62 "//content/browser", | 61 "//content/browser", |
| 63 ] | 62 ] |
| 64 | 63 |
| 65 if (is_android) { | 64 if (is_android) { |
| 66 deps += [ "//ui/android" ] | 65 deps += [ "//ui/android" ] |
| 67 } | 66 } |
| 68 | 67 |
| 69 if (use_aura) { | 68 if (use_aura) { |
| 70 sources -= [ "context_factory.h" ] | 69 sources -= [ "context_factory.h" ] |
| 71 deps += [ "//ui/aura" ] | 70 deps += [ "//ui/aura" ] |
| 72 } | 71 } |
| 73 } | 72 } |
| OLD | NEW |