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

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: do not bundle ash resources into chrome 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 3050 matching lines...) Expand 10 before | Expand all | Expand 10 after
3061 if (use_aura) { 3061 if (use_aura) {
3062 deps += [ "//build/linux:fontconfig" ] 3062 deps += [ "//build/linux:fontconfig" ]
3063 if (use_dbus) { 3063 if (use_dbus) {
3064 deps += [ "//dbus" ] 3064 deps += [ "//dbus" ]
3065 } 3065 }
3066 } 3066 }
3067 if (use_x11) { 3067 if (use_x11) {
3068 sources += [ 3068 sources += [
3069 "views/javascript_app_modal_event_blocker_x11.cc", 3069 "views/javascript_app_modal_event_blocker_x11.cc",
3070 "views/javascript_app_modal_event_blocker_x11.h", 3070 "views/javascript_app_modal_event_blocker_x11.h",
3071 "views/tabs/window_finder_x11.cc",
3072 ] 3071 ]
3073 configs += [ "//build/config/linux:x11" ] 3072 configs += [ "//build/config/linux:x11" ]
3074 deps += [ 3073 deps += [
3075 "//ui/events/devices", 3074 "//ui/events/devices",
3076 "//ui/events/devices/x11", 3075 "//ui/events/devices/x11",
3077 ] 3076 ]
3078 if (is_chromeos) { 3077 if (is_desktop_linux) {
3079 sources -= [ "views/tabs/window_finder_x11.cc" ] 3078 sources += [ "views/tabs/window_finder_x11.cc" ]
3080 } 3079 }
3081 } 3080 }
3081 if (use_ozone) {
3082 sources += [ "views/tabs/window_finder_ozone.cc" ]
3083 }
3082 } 3084 }
3083 3085
3084 if (use_udev) { 3086 if (use_udev) {
3085 deps += [ "//device/udev_linux" ] 3087 deps += [ "//device/udev_linux" ]
3086 } 3088 }
3087 3089
3088 if (enable_app_list) { 3090 if (enable_app_list) {
3089 sources += [ 3091 sources += [
3090 "app_list/app_context_menu.cc", 3092 "app_list/app_context_menu.cc",
3091 "app_list/app_context_menu.h", 3093 "app_list/app_context_menu.h",
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
3442 "test/test_confirm_bubble_model.cc", 3444 "test/test_confirm_bubble_model.cc",
3443 "test/test_confirm_bubble_model.h", 3445 "test/test_confirm_bubble_model.h",
3444 ] 3446 ]
3445 deps += [ "//chrome/test:test_support_ui" ] 3447 deps += [ "//chrome/test:test_support_ui" ]
3446 } 3448 }
3447 3449
3448 if (enable_extensions) { 3450 if (enable_extensions) {
3449 deps += [ "//extensions/browser" ] 3451 deps += [ "//extensions/browser" ]
3450 } 3452 }
3451 } 3453 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698