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

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

Issue 2449243002: Gtk3 ui: Add libgtk3ui as a separate build component (Closed)
Patch Set: Add theme_properties dep to //chrome/browser/ui Created 4 years, 1 month 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 if (is_linux) { 565 if (is_linux) {
566 if (!is_chromeos) { 566 if (!is_chromeos) {
567 # Desktop linux. 567 # Desktop linux.
568 sources -= [ 568 sources -= [
569 # TODO(port): This times out. Attempts have been made to fix the 569 # TODO(port): This times out. Attempts have been made to fix the
570 # individual failures, but each time I disable a test from these 570 # individual failures, but each time I disable a test from these
571 # suites, it seems like one or another starts timing out too. 571 # suites, it seems like one or another starts timing out too.
572 "../browser/ui/views/keyboard_access_browsertest.cc", 572 "../browser/ui/views/keyboard_access_browsertest.cc",
573 ] 573 ]
574 if (!use_ozone) { 574 if (!use_ozone) {
575 sources += [ "../browser/ui/libgtk2ui/select_file_dialog_interactive _uitest.cc" ] 575 sources += [ "../browser/ui/libgtkui/select_file_dialog_interactive_ uitest.cc" ]
576 if (use_gtk3) { 576 if (use_gtk3) {
577 configs += [ "//build/config/linux/gtk3:gtk3_internal_config" ] 577 configs += [ "//build/config/linux/gtk3:gtk3_internal_config" ]
578 } else { 578 } else {
579 configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ] 579 configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ]
580 } 580 }
581 } 581 }
582 } 582 }
583 } 583 }
584 if (is_chromeos || !use_x11) { 584 if (is_chromeos || !use_x11) {
585 sources -= [ 585 sources -= [
(...skipping 3496 matching lines...) Expand 10 before | Expand all | Expand 10 after
4082 "//chrome/browser/profiles/profile_statistics_unittest.cc", 4082 "//chrome/browser/profiles/profile_statistics_unittest.cc",
4083 "//chrome/browser/ui/startup/default_browser_infobar_delegate_unittest.cc" , 4083 "//chrome/browser/ui/startup/default_browser_infobar_delegate_unittest.cc" ,
4084 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", 4084 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc",
4085 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", 4085 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc",
4086 ] 4086 ]
4087 } 4087 }
4088 if (use_gio) { 4088 if (use_gio) {
4089 deps += [ "//build/linux/libgio" ] 4089 deps += [ "//build/linux/libgio" ]
4090 } 4090 }
4091 if (!is_chromeos && !use_ozone && is_linux) { 4091 if (!is_chromeos && !use_ozone && is_linux) {
4092 deps += [ "//chrome/browser/ui/libgtk2ui" ] 4092 if (use_gtk3) {
4093 deps += [ "//chrome/browser/ui/libgtkui:libgtk3ui" ]
4094 } else {
4095 deps += [ "//chrome/browser/ui/libgtkui:libgtk2ui" ]
4096 }
4093 } 4097 }
4094 4098
4095 if (enable_task_manager) { 4099 if (enable_task_manager) {
4096 sources += [ 4100 sources += [
4097 "../browser/task_manager/providers/browser_process_task_unittest.cc", 4101 "../browser/task_manager/providers/browser_process_task_unittest.cc",
4098 "../browser/task_manager/providers/child_process_task_unittest.cc", 4102 "../browser/task_manager/providers/child_process_task_unittest.cc",
4099 "../browser/task_manager/sampling/shared_sampler_unittest_win.cc", 4103 "../browser/task_manager/sampling/shared_sampler_unittest_win.cc",
4100 "../browser/task_manager/sampling/task_manager_impl_unittest.cc", 4104 "../browser/task_manager/sampling/task_manager_impl_unittest.cc",
4101 "../browser/task_manager/task_manager_observer_unittest.cc", 4105 "../browser/task_manager/task_manager_observer_unittest.cc",
4102 "../browser/task_manager/test_task_manager.cc", 4106 "../browser/task_manager/test_task_manager.cc",
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
5027 "touch_hud", 5031 "touch_hud",
5028 "ui", 5032 "ui",
5029 ] 5033 ]
5030 5034
5031 if (is_linux && !is_android) { 5035 if (is_linux && !is_android) {
5032 deps += [ "//components/font_service:manifest" ] 5036 deps += [ "//components/font_service:manifest" ]
5033 packaged_services += [ "font_service" ] 5037 packaged_services += [ "font_service" ]
5034 } 5038 }
5035 } 5039 }
5036 } 5040 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/chrome_browser_main_extra_parts_views_linux.cc ('k') | third_party/harfbuzz-ng/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698