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

Side by Side Diff: chrome/test/BUILD.gn

Issue 2164033002: Refactoring startup logic for upcoming FRE changes (non-Win 10). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Additional Nits Created 4 years, 3 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
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 4029 matching lines...) Expand 10 before | Expand all | Expand 10 after
4040 "../browser/shell_integration_linux_unittest.cc", 4040 "../browser/shell_integration_linux_unittest.cc",
4041 "../browser/ui/input_method/input_method_engine_unittest.cc", 4041 "../browser/ui/input_method/input_method_engine_unittest.cc",
4042 ] 4042 ]
4043 } 4043 }
4044 if (!is_android && !is_ios && !is_chromeos) { 4044 if (!is_android && !is_ios && !is_chromeos) {
4045 sources += [ 4045 sources += [
4046 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", 4046 "../browser/net/disk_cache_dir_policy_handler_unittest.cc",
4047 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", 4047 "//chrome/browser/profiles/profile_list_desktop_unittest.cc",
4048 "//chrome/browser/profiles/profile_statistics_unittest.cc", 4048 "//chrome/browser/profiles/profile_statistics_unittest.cc",
4049 "//chrome/browser/ui/startup/default_browser_infobar_delegate_unittest.cc" , 4049 "//chrome/browser/ui/startup/default_browser_infobar_delegate_unittest.cc" ,
4050 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc",
4051 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc",
4050 ] 4052 ]
4051 } 4053 }
4052 if (use_gio) { 4054 if (use_gio) {
4053 deps += [ "//build/linux/libgio" ] 4055 deps += [ "//build/linux/libgio" ]
4054 } 4056 }
4055 if (!is_chromeos && !use_ozone && is_linux) { 4057 if (!is_chromeos && !use_ozone && is_linux) {
4056 deps += [ "//chrome/browser/ui/libgtk2ui" ] 4058 deps += [ "//chrome/browser/ui/libgtk2ui" ]
4057 } 4059 }
4058 4060
4059 if (enable_task_manager) { 4061 if (enable_task_manager) {
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
4985 "touch_hud", 4987 "touch_hud",
4986 "ui", 4988 "ui",
4987 ] 4989 ]
4988 4990
4989 if (is_linux && !is_android) { 4991 if (is_linux && !is_android) {
4990 deps += [ "//components/font_service:manifest" ] 4992 deps += [ "//components/font_service:manifest" ]
4991 packaged_services += [ "font_service" ] 4993 packaged_services += [ "font_service" ]
4992 } 4994 }
4993 } 4995 }
4994 } 4996 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698