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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 static_library("apps") { | 8 static_library("apps") { |
9 sources = [ | 9 sources = [ |
10 "app_lifetime_monitor.cc", | 10 "app_lifetime_monitor.cc", |
11 "app_lifetime_monitor.h", | 11 "app_lifetime_monitor.h", |
12 "app_lifetime_monitor_factory.cc", | 12 "app_lifetime_monitor_factory.cc", |
13 "app_lifetime_monitor_factory.h", | 13 "app_lifetime_monitor_factory.h", |
14 "app_load_service.cc", | 14 "app_load_service.cc", |
15 "app_load_service.h", | 15 "app_load_service.h", |
16 "app_load_service_factory.cc", | 16 "app_load_service_factory.cc", |
17 "app_load_service_factory.h", | 17 "app_load_service_factory.h", |
18 "app_restore_service.cc", | 18 "app_restore_service.cc", |
19 "app_restore_service.h", | 19 "app_restore_service.h", |
20 "app_restore_service_factory.cc", | 20 "app_restore_service_factory.cc", |
21 "app_restore_service_factory.h", | 21 "app_restore_service_factory.h", |
22 "app_window.cc", | |
23 "app_window.h", | |
24 "app_window_contents.cc", | 22 "app_window_contents.cc", |
25 "app_window_contents.h", | 23 "app_window_contents.h", |
26 "app_window_registry.cc", | |
27 "app_window_registry.h", | |
28 "browser_context_keyed_service_factories.cc", | 24 "browser_context_keyed_service_factories.cc", |
29 "browser_context_keyed_service_factories.h", | 25 "browser_context_keyed_service_factories.h", |
30 "custom_launcher_page_contents.cc", | 26 "custom_launcher_page_contents.cc", |
31 "custom_launcher_page_contents.h", | 27 "custom_launcher_page_contents.h", |
32 "launcher.cc", | 28 "launcher.cc", |
33 "launcher.h", | 29 "launcher.h", |
34 "metrics_names.h", | 30 "metrics_names.h", |
35 "saved_files_service.cc", | 31 "saved_files_service.cc", |
36 "saved_files_service.h", | 32 "saved_files_service.h", |
37 "saved_files_service_factory.cc", | 33 "saved_files_service_factory.cc", |
38 "saved_files_service_factory.h", | 34 "saved_files_service_factory.h", |
39 "switches.cc", | 35 "switches.cc", |
40 "switches.h", | 36 "switches.h", |
41 "ui/apps_client.cc", | |
42 "ui/apps_client.h", | |
43 ] | 37 ] |
44 | 38 |
45 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 39 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
46 | 40 |
47 deps = [ | 41 deps = [ |
48 "//chrome/app/theme:theme_resources", | 42 "//chrome/app/theme:theme_resources", |
49 "//chrome/browser/extensions", | 43 "//chrome/browser/extensions", |
50 "//chrome/common/extensions/api:api", | 44 "//chrome/common/extensions/api:api", |
51 "//components/web_modal", | 45 "//components/web_modal", |
52 "//skia", | 46 "//skia", |
(...skipping 20 matching lines...) Expand all Loading... |
73 "//ui/strings", | 67 "//ui/strings", |
74 "//ui/views", | 68 "//ui/views", |
75 ] | 69 ] |
76 } | 70 } |
77 | 71 |
78 if (is_win) { | 72 if (is_win) { |
79 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 73 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
80 cflags = [ "/wd4267" ] | 74 cflags = [ "/wd4267" ] |
81 } | 75 } |
82 } | 76 } |
OLD | NEW |