| 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 30 matching lines...) Expand all Loading... |
| 41 ] | 41 ] |
| 42 deps = [ | 42 deps = [ |
| 43 "//cc", | 43 "//cc", |
| 44 "//content/browser", # Must not be public_deps! | 44 "//content/browser", # Must not be public_deps! |
| 45 "//content/public/common:common_sources", | 45 "//content/public/common:common_sources", |
| 46 "//device/power_save_blocker", | 46 "//device/power_save_blocker", |
| 47 "//gpu", | 47 "//gpu", |
| 48 "//media", | 48 "//media", |
| 49 "//net", | 49 "//net", |
| 50 "//ppapi/c", | 50 "//ppapi/c", |
| 51 "//services/shell/public/cpp", |
| 51 "//storage/browser", | 52 "//storage/browser", |
| 52 "//ui/accessibility", | 53 "//ui/accessibility", |
| 53 "//ui/base", | 54 "//ui/base", |
| 54 "//ui/events", | 55 "//ui/events", |
| 55 "//ui/gl", | 56 "//ui/gl", |
| 56 "//ui/surface", | 57 "//ui/surface", |
| 57 ] | 58 ] |
| 58 | 59 |
| 59 allow_circular_includes_from = [ | 60 allow_circular_includes_from = [ |
| 60 # This target is a pair with content/browser. They always go together and | 61 # This target is a pair with content/browser. They always go together and |
| 61 # include headers from each other. | 62 # include headers from each other. |
| 62 "//content/browser", | 63 "//content/browser", |
| 63 ] | 64 ] |
| 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 |