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

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

Issue 2816293002: Description: Replace layout constants in chrome/browser/extensions and chrome/browser/first_run (Closed)
Patch Set: Address review comments Created 3 years, 7 months 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 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1670 "views/extensions/media_galleries_dialog_views.h", 1670 "views/extensions/media_galleries_dialog_views.h",
1671 "views/extensions/media_gallery_checkbox_view.cc", 1671 "views/extensions/media_gallery_checkbox_view.cc",
1672 "views/extensions/media_gallery_checkbox_view.h", 1672 "views/extensions/media_gallery_checkbox_view.h",
1673 ] 1673 ]
1674 if (use_aura) { 1674 if (use_aura) {
1675 sources += [ 1675 sources += [
1676 "views/extensions/extension_popup_aura.cc", 1676 "views/extensions/extension_popup_aura.cc",
1677 "views/extensions/extension_popup_aura.h", 1677 "views/extensions/extension_popup_aura.h",
1678 ] 1678 ]
1679 } 1679 }
1680 if (is_chromeos) {
1681 sources += [
1682 "views/extensions/request_file_system_dialog_view.cc",
1683 "views/extensions/request_file_system_dialog_view.h",
1684 ]
1685 }
1680 } 1686 }
1681 if (!is_mac || mac_views_browser) { 1687 if (!is_mac || mac_views_browser) {
1682 sources += [ 1688 sources += [
1683 "javascript_dialogs/javascript_dialog.cc", 1689 "javascript_dialogs/javascript_dialog.cc",
1684 1690
1685 # This test header is included because it contains forward declarations 1691 # This test header is included because it contains forward declarations
1686 # needed for "friend" statements for use in tests. 1692 # needed for "friend" statements for use in tests.
1687 "translate/translate_bubble_test_utils.h", 1693 "translate/translate_bubble_test_utils.h",
1688 "views/accessibility/invert_bubble_view.cc", 1694 "views/accessibility/invert_bubble_view.cc",
1689 "views/accessibility/invert_bubble_view.h", 1695 "views/accessibility/invert_bubble_view.h",
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
1928 "views/webshare/webshare_target_picker_view.h", 1934 "views/webshare/webshare_target_picker_view.h",
1929 ] 1935 ]
1930 1936
1931 if (use_aura) { 1937 if (use_aura) {
1932 deps += [ 1938 deps += [
1933 "//services/ui/public/cpp", 1939 "//services/ui/public/cpp",
1934 "//services/ui/public/interfaces", 1940 "//services/ui/public/interfaces",
1935 ] 1941 ]
1936 } 1942 }
1937 1943
1944 if (is_win) {
1945 sources += [
1946 "views/try_chrome_dialog_view.cc",
1947 "views/try_chrome_dialog_view.h",
1948 ]
1949 }
1950
1938 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window 1951 # TODO(ellyjones): Mus is not supported on Mac (there is no ui::Window
1939 # apart from aura::Window, which is also not supported). 1952 # apart from aura::Window, which is also not supported).
1940 if (!is_mac) { 1953 if (!is_mac) {
1941 sources += [ 1954 sources += [
1942 "views/ime_driver/ime_driver_mus.cc", 1955 "views/ime_driver/ime_driver_mus.cc",
1943 "views/ime_driver/ime_driver_mus.h", 1956 "views/ime_driver/ime_driver_mus.h",
1944 "views/ime_driver/input_method_bridge_chromeos.cc", 1957 "views/ime_driver/input_method_bridge_chromeos.cc",
1945 "views/ime_driver/input_method_bridge_chromeos.h", 1958 "views/ime_driver/input_method_bridge_chromeos.h",
1946 "views/ime_driver/remote_text_input_client.cc", 1959 "views/ime_driver/remote_text_input_client.cc",
1947 "views/ime_driver/remote_text_input_client.h", 1960 "views/ime_driver/remote_text_input_client.h",
(...skipping 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after
3575 "test/test_confirm_bubble_model.cc", 3588 "test/test_confirm_bubble_model.cc",
3576 "test/test_confirm_bubble_model.h", 3589 "test/test_confirm_bubble_model.h",
3577 ] 3590 ]
3578 deps += [ "//chrome/test:test_support_ui" ] 3591 deps += [ "//chrome/test:test_support_ui" ]
3579 } 3592 }
3580 3593
3581 if (enable_extensions) { 3594 if (enable_extensions) {
3582 deps += [ "//extensions/browser" ] 3595 deps += [ "//extensions/browser" ]
3583 } 3596 }
3584 } 3597 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698