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

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

Issue 1909273002: 🐳 Move linux pkg_config() calls into separate BUILD.gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move //build/config/posix earlier as well Created 4 years, 8 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//ui/base/ui_features.gni") 10 import("//ui/base/ui_features.gni")
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 880
881 if (is_android) { 881 if (is_android) {
882 deps += [ 882 deps += [
883 "//chrome:resources", 883 "//chrome:resources",
884 "//ui/android:ui_java", 884 "//ui/android:ui_java",
885 ] 885 ]
886 isolate_file = "ui_base_tests.isolate" 886 isolate_file = "ui_base_tests.isolate"
887 } 887 }
888 888
889 if (use_pango) { 889 if (use_pango) {
890 configs += [ "//build/config/linux:pangocairo" ] 890 configs += [ "//build/config/linux/pangocairo" ]
891 } 891 }
892 892
893 if (use_x11) { 893 if (use_x11) {
894 sources += [ "cursor/cursor_loader_x11_unittest.cc" ] 894 sources += [ "cursor/cursor_loader_x11_unittest.cc" ]
895 895
896 configs += [ "//build/config/linux:x11" ] 896 configs += [ "//build/config/linux:x11" ]
897 897
898 deps += [ 898 deps += [
899 "//ui/events/platform/x11", 899 "//ui/events/platform/x11",
900 "//ui/gfx/x", 900 "//ui/gfx/x",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 if (is_mac) { 966 if (is_mac) {
967 mac_framework_bundle("ui_unittests_framework") { 967 mac_framework_bundle("ui_unittests_framework") {
968 testonly = true 968 testonly = true
969 deps = [ 969 deps = [
970 "//ui/resources:ui_test_pak_bundle_data", 970 "//ui/resources:ui_test_pak_bundle_data",
971 ] 971 ]
972 info_plist = "test/framework-Info.plist" 972 info_plist = "test/framework-Info.plist"
973 output_name = "ui_unittests Framework" 973 output_name = "ui_unittests Framework"
974 } 974 }
975 } 975 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698