| 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 "browser_context_keyed_service_factories.cc", | 22 "browser_context_keyed_service_factories.cc", |
| 23 "browser_context_keyed_service_factories.h", | 23 "browser_context_keyed_service_factories.h", |
| 24 "custom_launcher_page_contents.cc", | 24 "custom_launcher_page_contents.cc", |
| 25 "custom_launcher_page_contents.h", | 25 "custom_launcher_page_contents.h", |
| 26 "launcher.cc", | 26 "launcher.cc", |
| 27 "launcher.h", | 27 "launcher.h", |
| 28 "metrics_names.h", | 28 "metrics_names.h", |
| 29 "saved_devices_service.cc", |
| 30 "saved_devices_service.h", |
| 31 "saved_devices_service_factory.cc", |
| 32 "saved_devices_service_factory.h", |
| 29 "saved_files_service.cc", | 33 "saved_files_service.cc", |
| 30 "saved_files_service.h", | 34 "saved_files_service.h", |
| 31 "saved_files_service_factory.cc", | 35 "saved_files_service_factory.cc", |
| 32 "saved_files_service_factory.h", | 36 "saved_files_service_factory.h", |
| 33 "switches.cc", | 37 "switches.cc", |
| 34 "switches.h", | 38 "switches.h", |
| 35 ] | 39 ] |
| 36 | 40 |
| 37 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 41 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 38 | 42 |
| 39 deps = [ | 43 deps = [ |
| 40 "//chrome/app/theme:theme_resources", | 44 "//chrome/app/theme:theme_resources", |
| 41 "//chrome/browser/extensions", | 45 "//chrome/browser/extensions", |
| 42 "//chrome/common/extensions/api:api", | 46 "//chrome/common/extensions/api:api", |
| 43 "//components/web_modal", | 47 "//components/web_modal", |
| 48 "//device/usb", |
| 44 "//skia", | 49 "//skia", |
| 45 ] | 50 ] |
| 46 | 51 |
| 47 if (is_chromeos) { | 52 if (is_chromeos) { |
| 48 #deps += [ "browser_chromeos" ] TODO(GYP) | 53 #deps += [ "browser_chromeos" ] TODO(GYP) |
| 49 } | 54 } |
| 50 | 55 |
| 51 if (!enable_extensions) { | 56 if (!enable_extensions) { |
| 52 # When extensions are disabled, only the sizer file below is included. | 57 # When extensions are disabled, only the sizer file below is included. |
| 53 deps -= [ "//chrome/browser/extensions" ] | 58 deps -= [ "//chrome/browser/extensions" ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 65 "//ui/strings", | 70 "//ui/strings", |
| 66 "//ui/views", | 71 "//ui/views", |
| 67 ] | 72 ] |
| 68 } | 73 } |
| 69 | 74 |
| 70 if (is_win) { | 75 if (is_win) { |
| 71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 76 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 72 cflags = [ "/wd4267" ] | 77 cflags = [ "/wd4267" ] |
| 73 } | 78 } |
| 74 } | 79 } |
| OLD | NEW |