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 1873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 # gtk{2,3} is the only component that can interact with gtk in our new |
1895 # gtk2 is the only component that can interact with gtk2 in our new | 1895 # world. |
Dirk Pranke
2016/10/25 23:56:10
Nit: I'd rewrite this to "these are the only compo
Tom (Use chromium acct)
2016/10/26 18:20:01
Done.
| |
1896 # world. | 1896 if (use_gtk3) { |
1897 "//chrome/browser/ui/libgtk2ui", | 1897 deps += [ "//chrome/browser/ui/libgtk2ui:libgtk3ui" ] |
1898 ] | 1898 } else { |
1899 deps += [ "//chrome/browser/ui/libgtk2ui:libgtk2ui" ] | |
1900 } | |
Dirk Pranke
2016/10/25 23:56:10
You eventually want to be building and depending o
Tom (Use chromium acct)
2016/10/26 18:20:01
We'll want to build both during our gtk3 transitio
| |
1899 } | 1901 } |
1900 if (is_win || is_mac || is_desktop_linux) { | 1902 if (is_win || is_mac || is_desktop_linux) { |
1901 sources += [ | 1903 sources += [ |
1902 "avatar_button_error_controller.cc", | 1904 "avatar_button_error_controller.cc", |
1903 "avatar_button_error_controller.h", | 1905 "avatar_button_error_controller.h", |
1904 "avatar_button_error_controller_delegate.h", | 1906 "avatar_button_error_controller_delegate.h", |
1905 "startup/default_browser_infobar_delegate.cc", | 1907 "startup/default_browser_infobar_delegate.cc", |
1906 "startup/default_browser_infobar_delegate.h", | 1908 "startup/default_browser_infobar_delegate.h", |
1907 "startup/default_browser_prompt.cc", | 1909 "startup/default_browser_prompt.cc", |
1908 "startup/default_browser_prompt.h", | 1910 "startup/default_browser_prompt.h", |
(...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3420 "test/test_confirm_bubble_model.cc", | 3422 "test/test_confirm_bubble_model.cc", |
3421 "test/test_confirm_bubble_model.h", | 3423 "test/test_confirm_bubble_model.h", |
3422 ] | 3424 ] |
3423 deps += [ "//chrome/test:test_support_ui" ] | 3425 deps += [ "//chrome/test:test_support_ui" ] |
3424 } | 3426 } |
3425 | 3427 |
3426 if (enable_extensions) { | 3428 if (enable_extensions) { |
3427 deps += [ "//extensions/browser" ] | 3429 deps += [ "//extensions/browser" ] |
3428 } | 3430 } |
3429 } | 3431 } |
OLD | NEW |