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

Side by Side Diff: ui/views/BUILD.gn

Issue 2280433004: Fix missing shadows for tooltip and menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Just rebase 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//ui/ozone/ozone.gni")
8 9
9 config("flags") { 10 config("flags") {
10 defines = [ "TOOLKIT_VIEWS=1" ] 11 defines = [ "TOOLKIT_VIEWS=1" ]
11 } 12 }
12 13
13 component("views") { 14 component("views") {
14 all_dependent_configs = [ ":flags" ] 15 all_dependent_configs = [ ":flags" ]
15 sources = [ 16 sources = [
16 "accessibility/native_view_accessibility.cc", 17 "accessibility/native_view_accessibility.cc",
17 "accessibility/native_view_accessibility.h", 18 "accessibility/native_view_accessibility.h",
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 "test/desktop_screen_x11_test_api.cc", 744 "test/desktop_screen_x11_test_api.cc",
744 "test/desktop_screen_x11_test_api.h", 745 "test/desktop_screen_x11_test_api.h",
745 "test/ui_controls_factory_desktop_aurax11.cc", 746 "test/ui_controls_factory_desktop_aurax11.cc",
746 "test/ui_controls_factory_desktop_aurax11.h", 747 "test/ui_controls_factory_desktop_aurax11.h",
747 ] 748 ]
748 } 749 }
749 } 750 }
750 if (use_x11) { 751 if (use_x11) {
751 deps += [ "//ui/gfx/x" ] 752 deps += [ "//ui/gfx/x" ]
752 } 753 }
754 if (ozone_platform_x11) {
755 deps += [ "//ui/base/x" ]
756 }
753 if (use_ozone || !use_x11) { 757 if (use_ozone || !use_x11) {
754 sources -= [ 758 sources -= [
755 "test/x11_property_change_waiter.cc", 759 "test/x11_property_change_waiter.cc",
756 "test/x11_property_change_waiter.h", 760 "test/x11_property_change_waiter.h",
757 ] 761 ]
758 } 762 }
759 } 763 }
760 764
761 static_library("test_support") { 765 static_library("test_support") {
762 testonly = true 766 testonly = true
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 "//ui/base:test_support", 995 "//ui/base:test_support",
992 "//ui/compositor", 996 "//ui/compositor",
993 "//ui/events:test_support", 997 "//ui/events:test_support",
994 "//ui/gl:test_support", 998 "//ui/gl:test_support",
995 "//ui/resources", 999 "//ui/resources",
996 "//ui/resources:ui_test_pak", 1000 "//ui/resources:ui_test_pak",
997 "//ui/strings", 1001 "//ui/strings",
998 ] 1002 ]
999 } 1003 }
1000 } 1004 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698