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

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

Issue 2449243002: Gtk3 ui: Add libgtk3ui as a separate build component (Closed)
Patch Set: Fix gn gen --check failure 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 1873 matching lines...) Expand 10 before | Expand all | Expand 10 after
1884 "views/frame/web_app_left_header_view_ash.cc", 1884 "views/frame/web_app_left_header_view_ash.cc",
1885 "views/frame/web_app_left_header_view_ash.h", 1885 "views/frame/web_app_left_header_view_ash.h",
1886 "views/tabs/window_finder_ash.cc", 1886 "views/tabs/window_finder_ash.cc",
1887 ] 1887 ]
1888 } 1888 }
1889 } 1889 }
1890 if (use_gio) { 1890 if (use_gio) {
1891 deps += [ "//build/linux/libgio" ] 1891 deps += [ "//build/linux/libgio" ]
1892 } 1892 }
1893 if (use_aura && !use_ozone && is_desktop_linux) { 1893 if (use_aura && !use_ozone && is_desktop_linux) {
1894 deps += [ 1894 # These are the only components that can interact with gtk.
1895 # gtk2 is the only component that can interact with gtk2 in our new 1895 if (use_gtk3) {
1896 # world. 1896 deps += [ "//chrome/browser/ui/libgtkui:libgtk3ui" ]
1897 "//chrome/browser/ui/libgtk2ui", 1897 } else {
1898 ] 1898 deps += [ "//chrome/browser/ui/libgtkui:libgtk2ui" ]
1899 }
1899 } 1900 }
1900 if (is_win || is_mac || is_desktop_linux) { 1901 if (is_win || is_mac || is_desktop_linux) {
1901 sources += [ 1902 sources += [
1902 "avatar_button_error_controller.cc", 1903 "avatar_button_error_controller.cc",
1903 "avatar_button_error_controller.h", 1904 "avatar_button_error_controller.h",
1904 "avatar_button_error_controller_delegate.h", 1905 "avatar_button_error_controller_delegate.h",
1905 "startup/default_browser_infobar_delegate.cc", 1906 "startup/default_browser_infobar_delegate.cc",
1906 "startup/default_browser_infobar_delegate.h", 1907 "startup/default_browser_infobar_delegate.h",
1907 "startup/default_browser_prompt.cc", 1908 "startup/default_browser_prompt.cc",
1908 "startup/default_browser_prompt.h", 1909 "startup/default_browser_prompt.h",
(...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after
3420 "test/test_confirm_bubble_model.cc", 3421 "test/test_confirm_bubble_model.cc",
3421 "test/test_confirm_bubble_model.h", 3422 "test/test_confirm_bubble_model.h",
3422 ] 3423 ]
3423 deps += [ "//chrome/test:test_support_ui" ] 3424 deps += [ "//chrome/test:test_support_ui" ]
3424 } 3425 }
3425 3426
3426 if (enable_extensions) { 3427 if (enable_extensions) {
3427 deps += [ "//extensions/browser" ] 3428 deps += [ "//extensions/browser" ]
3428 } 3429 }
3429 } 3430 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698