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

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 2408803002: Make it possible to launch chrome --mash with ozone_platform={wayland|x11}, chromeos=0 (Closed)
Patch Set: smaller CL, only with crucial bits (see comment #53) 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3048 matching lines...) Expand 10 before | Expand all | Expand 10 after
3059 if (use_aura) { 3059 if (use_aura) {
3060 deps += [ "//build/linux:fontconfig" ] 3060 deps += [ "//build/linux:fontconfig" ]
3061 if (use_dbus) { 3061 if (use_dbus) {
3062 deps += [ "//dbus" ] 3062 deps += [ "//dbus" ]
3063 } 3063 }
3064 } 3064 }
3065 if (use_x11) { 3065 if (use_x11) {
3066 sources += [ 3066 sources += [
3067 "views/javascript_app_modal_event_blocker_x11.cc", 3067 "views/javascript_app_modal_event_blocker_x11.cc",
3068 "views/javascript_app_modal_event_blocker_x11.h", 3068 "views/javascript_app_modal_event_blocker_x11.h",
3069 "views/tabs/window_finder_x11.cc",
3070 ] 3069 ]
3071 configs += [ "//build/config/linux:x11" ] 3070 configs += [ "//build/config/linux:x11" ]
3072 deps += [ 3071 deps += [
3073 "//ui/events/devices", 3072 "//ui/events/devices",
3074 "//ui/events/devices/x11", 3073 "//ui/events/devices/x11",
3075 ] 3074 ]
3076 if (is_chromeos) { 3075 }
3077 sources -= [ "views/tabs/window_finder_x11.cc" ] 3076 }
3078 } 3077 if (is_desktop_linux) {
3078 if (use_x11) {
3079 sources += [ "views/tabs/window_finder_x11.cc" ]
3080 }
3081 if (use_ozone) {
3082 sources += [ "views/tabs/window_finder_ozone.cc" ]
3079 } 3083 }
3080 } 3084 }
3081 3085
3082 if (use_udev) { 3086 if (use_udev) {
3083 deps += [ "//device/udev_linux" ] 3087 deps += [ "//device/udev_linux" ]
3084 } 3088 }
3085 3089
3086 if (enable_app_list) { 3090 if (enable_app_list) {
3087 sources += [ 3091 sources += [
3088 "app_list/app_context_menu.cc", 3092 "app_list/app_context_menu.cc",
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
3440 "test/test_confirm_bubble_model.cc", 3444 "test/test_confirm_bubble_model.cc",
3441 "test/test_confirm_bubble_model.h", 3445 "test/test_confirm_bubble_model.h",
3442 ] 3446 ]
3443 deps += [ "//chrome/test:test_support_ui" ] 3447 deps += [ "//chrome/test:test_support_ui" ]
3444 } 3448 }
3445 3449
3446 if (enable_extensions) { 3450 if (enable_extensions) {
3447 deps += [ "//extensions/browser" ] 3451 deps += [ "//extensions/browser" ]
3448 } 3452 }
3449 } 3453 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698