OLD | NEW |
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 1908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1919 "views/frame/web_app_left_header_view_ash.cc", | 1919 "views/frame/web_app_left_header_view_ash.cc", |
1920 "views/frame/web_app_left_header_view_ash.h", | 1920 "views/frame/web_app_left_header_view_ash.h", |
1921 "views/tabs/window_finder_ash.cc", | 1921 "views/tabs/window_finder_ash.cc", |
1922 ] | 1922 ] |
1923 } | 1923 } |
1924 } | 1924 } |
1925 if (use_gio) { | 1925 if (use_gio) { |
1926 deps += [ "//build/linux/libgio" ] | 1926 deps += [ "//build/linux/libgio" ] |
1927 } | 1927 } |
1928 if (use_aura && !use_ozone && is_desktop_linux) { | 1928 if (use_aura && !use_ozone && is_desktop_linux) { |
1929 # These are the only components that can interact with gtk. | 1929 # This is the only component that can interact with gtk. |
1930 if (use_gtk3) { | 1930 deps += [ "//chrome/browser/ui/libgtkui" ] |
1931 deps += [ "//chrome/browser/ui/libgtkui:libgtk3ui" ] | |
1932 } else { | |
1933 deps += [ "//chrome/browser/ui/libgtkui:libgtk2ui" ] | |
1934 } | |
1935 } | 1931 } |
1936 if (is_win || is_mac || is_desktop_linux) { | 1932 if (is_win || is_mac || is_desktop_linux) { |
1937 sources += [ | 1933 sources += [ |
1938 "avatar_button_error_controller.cc", | 1934 "avatar_button_error_controller.cc", |
1939 "avatar_button_error_controller.h", | 1935 "avatar_button_error_controller.h", |
1940 "avatar_button_error_controller_delegate.h", | 1936 "avatar_button_error_controller_delegate.h", |
1941 "startup/default_browser_infobar_delegate.cc", | 1937 "startup/default_browser_infobar_delegate.cc", |
1942 "startup/default_browser_infobar_delegate.h", | 1938 "startup/default_browser_infobar_delegate.h", |
1943 "startup/default_browser_prompt.cc", | 1939 "startup/default_browser_prompt.cc", |
1944 "startup/default_browser_prompt.h", | 1940 "startup/default_browser_prompt.h", |
(...skipping 1540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3485 "test/test_confirm_bubble_model.cc", | 3481 "test/test_confirm_bubble_model.cc", |
3486 "test/test_confirm_bubble_model.h", | 3482 "test/test_confirm_bubble_model.h", |
3487 ] | 3483 ] |
3488 deps += [ "//chrome/test:test_support_ui" ] | 3484 deps += [ "//chrome/test:test_support_ui" ] |
3489 } | 3485 } |
3490 | 3486 |
3491 if (enable_extensions) { | 3487 if (enable_extensions) { |
3492 deps += [ "//extensions/browser" ] | 3488 deps += [ "//extensions/browser" ] |
3493 } | 3489 } |
3494 } | 3490 } |
OLD | NEW |