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

Side by Side Diff: ui/base/BUILD.gn

Issue 2645653003: Expose thumbnails of pages to iOS share extensions. (Closed)
Patch Set: Addressed comments. Created 3 years, 10 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//ui/base/ui_features.gni") 10 import("//ui/base/ui_features.gni")
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 "test/scoped_preferred_scroller_style_mac.mm", 655 "test/scoped_preferred_scroller_style_mac.mm",
656 "test/test_clipboard.cc", 656 "test/test_clipboard.cc",
657 "test/test_clipboard.h", 657 "test/test_clipboard.h",
658 "test/windowed_nsnotification_observer.h", 658 "test/windowed_nsnotification_observer.h",
659 "test/windowed_nsnotification_observer.mm", 659 "test/windowed_nsnotification_observer.mm",
660 ] 660 ]
661 } else { 661 } else {
662 sources += [ 662 sources += [
663 "test/ios/keyboard_appearance_listener.h", 663 "test/ios/keyboard_appearance_listener.h",
664 "test/ios/keyboard_appearance_listener.mm", 664 "test/ios/keyboard_appearance_listener.mm",
665 "test/ios/ui_image_test_utils.h",
666 "test/ios/ui_image_test_utils.mm",
665 "test/ios/ui_view_test_utils.h", 667 "test/ios/ui_view_test_utils.h",
666 "test/ios/ui_view_test_utils.mm", 668 "test/ios/ui_view_test_utils.mm",
667 ] 669 ]
668 } 670 }
669 671
670 if (is_mac) { 672 if (is_mac) {
671 sources += [ "test/user_interactive_test_case_mac.mm" ] 673 sources += [ "test/user_interactive_test_case_mac.mm" ]
672 } else { 674 } else {
673 sources += [ "test/user_interactive_test_case.cc" ] 675 sources += [ "test/user_interactive_test_case.cc" ]
674 } 676 }
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
974 if (is_mac) { 976 if (is_mac) {
975 mac_framework_bundle("ui_unittests_framework") { 977 mac_framework_bundle("ui_unittests_framework") {
976 testonly = true 978 testonly = true
977 deps = [ 979 deps = [
978 "//ui/resources:ui_test_pak_bundle_data", 980 "//ui/resources:ui_test_pak_bundle_data",
979 ] 981 ]
980 info_plist = "test/framework-Info.plist" 982 info_plist = "test/framework-Info.plist"
981 output_name = "ui_unittests Framework" 983 output_name = "ui_unittests Framework"
982 } 984 }
983 } 985 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698