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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//ui/ozone/ozone.gni") | 8 import("//ui/ozone/ozone.gni") |
9 | 9 |
10 config("flags") { | 10 config("flags") { |
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
614 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", | 614 "widget/desktop_aura/desktop_window_tree_host_ozone.cc", |
615 ] | 615 ] |
616 } | 616 } |
617 if (is_linux) { | 617 if (is_linux) { |
618 sources += [ "style/platform_style_linux.cc" ] | 618 sources += [ "style/platform_style_linux.cc" ] |
619 } | 619 } |
620 } | 620 } |
621 } | 621 } |
622 | 622 |
623 if (is_mac) { | 623 if (is_mac) { |
624 if (mac_views_browser) { | |
sky
2016/11/28 16:22:22
Why does whether the browser uses views influence
tapted
2016/11/29 06:43:54
We never implemented proper RTL support for the Co
| |
625 sources += [ "style/platform_style_mac_views_browser.mm" ] | |
626 } else { | |
627 sources += [ "style/platform_style_mac_cocoa_browser.mm" ] | |
628 } | |
629 | |
624 deps += [ | 630 deps += [ |
625 "//ui/accelerated_widget_mac", | 631 "//ui/accelerated_widget_mac", |
626 "//ui/events:dom_keycode_converter", | 632 "//ui/events:dom_keycode_converter", |
627 ] | 633 ] |
628 libs = [ | 634 libs = [ |
629 "AppKit.framework", | 635 "AppKit.framework", |
630 "CoreGraphics.framework", | 636 "CoreGraphics.framework", |
631 "Foundation.framework", | 637 "Foundation.framework", |
632 "QuartzCore.framework", # Required by bridged_native_widget.mm. | 638 "QuartzCore.framework", # Required by bridged_native_widget.mm. |
633 ] | 639 ] |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1015 "//ui/base:test_support", | 1021 "//ui/base:test_support", |
1016 "//ui/compositor", | 1022 "//ui/compositor", |
1017 "//ui/events:test_support", | 1023 "//ui/events:test_support", |
1018 "//ui/gl:test_support", | 1024 "//ui/gl:test_support", |
1019 "//ui/resources", | 1025 "//ui/resources", |
1020 "//ui/resources:ui_test_pak", | 1026 "//ui/resources:ui_test_pak", |
1021 "//ui/strings", | 1027 "//ui/strings", |
1022 ] | 1028 ] |
1023 } | 1029 } |
1024 } | 1030 } |
OLD | NEW |