forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.gn
72 lines (63 loc) · 1.98 KB
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/features.gni")
import("//build/config/ui.gni")
assert(!is_android && !is_ios)
static_library("apps") {
sources = []
if (enable_extensions) {
sources += [
"app_lifetime_monitor.cc",
"app_lifetime_monitor.h",
"app_lifetime_monitor_factory.cc",
"app_lifetime_monitor_factory.h",
"app_load_service.cc",
"app_load_service.h",
"app_load_service_factory.cc",
"app_load_service_factory.h",
"app_restore_service.cc",
"app_restore_service.h",
"app_restore_service_factory.cc",
"app_restore_service_factory.h",
"browser_context_keyed_service_factories.cc",
"browser_context_keyed_service_factories.h",
"custom_launcher_page_contents.cc",
"custom_launcher_page_contents.h",
"launcher.cc",
"launcher.h",
"metrics_names.h",
"saved_files_service.cc",
"saved_files_service.h",
"saved_files_service_factory.cc",
"saved_files_service_factory.h",
"switches.cc",
"switches.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [
"//chrome/app/theme:theme_resources",
"//chrome/browser/extensions",
"//chrome/common/extensions/api",
"//components/web_modal",
"//skia",
]
# TODO: This top level directory should not have an include cycle.
allow_circular_includes_from = [ "//chrome/browser/extensions" ]
}
if (toolkit_views) {
sources += [
"ui/views/app_window_frame_view.cc",
"ui/views/app_window_frame_view.h",
]
deps += [
"//ui/strings",
"//ui/views",
]
if (enable_extensions) {
deps += [ "//extensions/browser" ]
}
}
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
}