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

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

Issue 2483783004: Rename NativeBrowserFrameFactoryAuraLinux to NativeBrowserFrameFactoryAuraX11 (Closed)
Patch Set: addressed sky's review (take 2) 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
« no previous file with comments | « no previous file | chrome/browser/ui/views/frame/desktop_browser_frame_auralinux.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3016 matching lines...) Expand 10 before | Expand all | Expand 10 after
3027 if (is_desktop_linux) { 3027 if (is_desktop_linux) {
3028 sources += [ 3028 sources += [
3029 "input_method/input_method_engine.cc", 3029 "input_method/input_method_engine.cc",
3030 "input_method/input_method_engine.h", 3030 "input_method/input_method_engine.h",
3031 "input_method/input_method_engine_base.cc", 3031 "input_method/input_method_engine_base.cc",
3032 "input_method/input_method_engine_base.h", 3032 "input_method/input_method_engine_base.h",
3033 "views/apps/chrome_app_window_client_views_linux.cc", 3033 "views/apps/chrome_app_window_client_views_linux.cc",
3034 "views/first_run_dialog.cc", 3034 "views/first_run_dialog.cc",
3035 "views/first_run_dialog.h", 3035 "views/first_run_dialog.h",
3036 "views/frame/browser_desktop_window_tree_host.h", 3036 "views/frame/browser_desktop_window_tree_host.h",
3037 "views/frame/desktop_browser_frame_auralinux.cc",
3038 "views/frame/desktop_browser_frame_auralinux.h",
3039 "views/status_icons/status_icon_linux_wrapper.cc", 3037 "views/status_icons/status_icon_linux_wrapper.cc",
3040 "views/status_icons/status_icon_linux_wrapper.h", 3038 "views/status_icons/status_icon_linux_wrapper.h",
3041 "webui/help/version_updater_basic.cc", 3039 "webui/help/version_updater_basic.cc",
3042 "webui/help/version_updater_basic.h", 3040 "webui/help/version_updater_basic.h",
3043 ] 3041 ]
3044 deps += [ 3042 deps += [
3045 "//ui/base/ime", 3043 "//ui/base/ime",
3046 "//ui/events:dom_keycode_converter", 3044 "//ui/events:dom_keycode_converter",
3047 ] 3045 ]
3048 3046
3049 if (use_x11) { 3047 if (use_x11) {
3050 sources += [ 3048 sources += [
3051 "views/frame/browser_desktop_window_tree_host_x11.cc", 3049 "views/frame/browser_desktop_window_tree_host_x11.cc",
3052 "views/frame/browser_desktop_window_tree_host_x11.h", 3050 "views/frame/browser_desktop_window_tree_host_x11.h",
3051 "views/frame/desktop_browser_frame_aurax11.cc",
3052 "views/frame/desktop_browser_frame_aurax11.h",
3053 "views/frame/global_menu_bar_registrar_x11.cc", 3053 "views/frame/global_menu_bar_registrar_x11.cc",
3054 "views/frame/global_menu_bar_registrar_x11.h", 3054 "views/frame/global_menu_bar_registrar_x11.h",
3055 "views/frame/global_menu_bar_x11.cc", 3055 "views/frame/global_menu_bar_x11.cc",
3056 "views/frame/global_menu_bar_x11.h", 3056 "views/frame/global_menu_bar_x11.h",
3057 "views/frame/native_browser_frame_factory_auralinux.cc", 3057 "views/frame/native_browser_frame_factory_aurax11.cc",
3058 "views/javascript_app_modal_dialog_views_x11.cc", 3058 "views/javascript_app_modal_dialog_views_x11.cc",
3059 "views/javascript_app_modal_dialog_views_x11.h", 3059 "views/javascript_app_modal_dialog_views_x11.h",
3060 ] 3060 ]
3061 } 3061 }
3062 if (use_ozone) { 3062 if (use_ozone) {
3063 sources += [ "views/frame/native_browser_frame_factory_ozone.cc" ] 3063 sources += [ "views/frame/native_browser_frame_factory_ozone.cc" ]
3064 } 3064 }
3065 } 3065 }
3066 if (is_linux) { # Both desktop Linux and ChromeOS. 3066 if (is_linux) { # Both desktop Linux and ChromeOS.
3067 sources += [ 3067 sources += [
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
3458 "test/test_confirm_bubble_model.cc", 3458 "test/test_confirm_bubble_model.cc",
3459 "test/test_confirm_bubble_model.h", 3459 "test/test_confirm_bubble_model.h",
3460 ] 3460 ]
3461 deps += [ "//chrome/test:test_support_ui" ] 3461 deps += [ "//chrome/test:test_support_ui" ]
3462 } 3462 }
3463 3463
3464 if (enable_extensions) { 3464 if (enable_extensions) {
3465 deps += [ "//extensions/browser" ] 3465 deps += [ "//extensions/browser" ]
3466 } 3466 }
3467 } 3467 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/frame/desktop_browser_frame_auralinux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698