| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "//ui/surface", | 59 "//ui/surface", |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 allow_circular_includes_from = [ | 62 allow_circular_includes_from = [ |
| 63 # This target is a pair with content/browser. They always go together and | 63 # This target is a pair with content/browser. They always go together and |
| 64 # include headers from each other. | 64 # include headers from each other. |
| 65 "//content/browser", | 65 "//content/browser", |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 if (is_android) { | 68 if (is_android) { |
| 69 deps += [ "//ui/android" ] | 69 deps += [ |
| 70 "//content/public/android:content_jni_headers", |
| 71 "//ui/android", |
| 72 ] |
| 70 } | 73 } |
| 71 | 74 |
| 72 if (use_aura) { | 75 if (use_aura) { |
| 73 sources -= [ "context_factory.h" ] | 76 sources -= [ "context_factory.h" ] |
| 74 deps += [ "//ui/aura" ] | 77 deps += [ "//ui/aura" ] |
| 75 } | 78 } |
| 76 } | 79 } |
| OLD | NEW |