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

Side by Side Diff: apps/BUILD.gn

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Add assert(enable_extensions) to apps/BUILD.gn and fixup chrome/browser/media/router/BUILD.gn Created 3 years, 7 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
« BUILD.gn ('K') | « BUILD.gn ('k') | apps/ui/views/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//extensions/features/features.gni") 7 import("//extensions/features/features.gni")
8 8
9 assert(!is_android && !is_ios) 9 assert(!is_android && !is_ios)
10 assert(enable_extensions)
10 11
11 static_library("apps") { 12 static_library("apps") {
12 sources = [] 13 sources = []
13 14
14 if (enable_extensions) { 15 if (enable_extensions) {
15 sources += [ 16 sources += [
16 "app_lifetime_monitor.cc", 17 "app_lifetime_monitor.cc",
17 "app_lifetime_monitor.h", 18 "app_lifetime_monitor.h",
18 "app_lifetime_monitor_factory.cc", 19 "app_lifetime_monitor_factory.cc",
19 "app_lifetime_monitor_factory.h", 20 "app_lifetime_monitor_factory.h",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 testonly = true 59 testonly = true
59 sources = [ 60 sources = [
60 "test/app_window_waiter.cc", 61 "test/app_window_waiter.cc",
61 "test/app_window_waiter.h", 62 "test/app_window_waiter.h",
62 ] 63 ]
63 64
64 public_deps = [ 65 public_deps = [
65 "//content/public/browser", 66 "//content/public/browser",
66 ] 67 ]
67 } 68 }
OLDNEW
« BUILD.gn ('K') | « BUILD.gn ('k') | apps/ui/views/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698