| 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", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "app_window_contents.h", | 25 "app_window_contents.h", |
| 26 "app_window_registry.cc", | 26 "app_window_registry.cc", |
| 27 "app_window_registry.h", | 27 "app_window_registry.h", |
| 28 "browser_context_keyed_service_factories.cc", | 28 "browser_context_keyed_service_factories.cc", |
| 29 "browser_context_keyed_service_factories.h", | 29 "browser_context_keyed_service_factories.h", |
| 30 "custom_launcher_page_contents.cc", | 30 "custom_launcher_page_contents.cc", |
| 31 "custom_launcher_page_contents.h", | 31 "custom_launcher_page_contents.h", |
| 32 "launcher.cc", | 32 "launcher.cc", |
| 33 "launcher.h", | 33 "launcher.h", |
| 34 "metrics_names.h", | 34 "metrics_names.h", |
| 35 "pref_names.cc", | |
| 36 "pref_names.h", | |
| 37 "prefs.cc", | |
| 38 "prefs.h", | |
| 39 "saved_files_service.cc", | 35 "saved_files_service.cc", |
| 40 "saved_files_service.h", | 36 "saved_files_service.h", |
| 41 "saved_files_service_factory.cc", | 37 "saved_files_service_factory.cc", |
| 42 "saved_files_service_factory.h", | 38 "saved_files_service_factory.h", |
| 43 "switches.cc", | 39 "switches.cc", |
| 44 "switches.h", | 40 "switches.h", |
| 45 "ui/apps_client.cc", | 41 "ui/apps_client.cc", |
| 46 "ui/apps_client.h", | 42 "ui/apps_client.h", |
| 47 "ui/web_contents_sizer.h", | 43 "ui/web_contents_sizer.h", |
| 48 ] | 44 ] |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "//ui/strings", | 81 "//ui/strings", |
| 86 "//ui/views", | 82 "//ui/views", |
| 87 ] | 83 ] |
| 88 } | 84 } |
| 89 | 85 |
| 90 if (is_win) { | 86 if (is_win) { |
| 91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 92 cflags = [ "/wd4267" ] | 88 cflags = [ "/wd4267" ] |
| 93 } | 89 } |
| 94 } | 90 } |
| OLD | NEW |