Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/features.gni") | |
| 6 import("//build/config/ui.gni") | |
| 7 | |
| 8 # Collection of all extensions components, which are the chrome | |
| 9 # components that depend on src/extensions. These can not go in | |
| 10 # src/components without creating a cycle. | |
| 11 group("extensions_components") { | |
|
scheib
2014/09/29 22:37:54
Where is this group referenced from?
| |
| 12 testonly = true # You shouldn't actually link to this. | |
|
scheib
2014/09/29 22:37:54
This code should be linked to non-test targets. Pe
| |
| 13 visibility = [ "//:*" ] # Only for the root targets to bring in. | |
|
scheib
2014/09/29 22:37:53
Why?
| |
| 14 | |
| 15 deps = [ | |
| 16 "//extensions/components/native_app_window", | |
| 17 ] | |
| 18 | |
| 19 if (!toolkit_views) { | |
| 20 deps -= [ "//extensions/components/native_app_window" ] | |
| 21 } | |
| 22 | |
| 23 } | |
| OLD | NEW |