Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Side by Side Diff: extensions/components/BUILD.gn

Issue 606953002: Move components/native_app_window to extensions/components/native_app_window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: patchfail/rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698