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

Side by Side Diff: skia/BUILD.gn

Issue 2612863002: Make skia::GetNativeDrawingContext Windows-only (Closed)
Patch Set: more guarding Created 3 years, 11 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
« no previous file with comments | « no previous file | skia/ext/bitmap_platform_device_mac_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//third_party/skia/gn/shared_sources.gni") 10 import("//third_party/skia/gn/shared_sources.gni")
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 ":skia_library_config", 636 ":skia_library_config",
637 "//build/config/compiler:no_chromium_code", 637 "//build/config/compiler:no_chromium_code",
638 ] 638 ]
639 639
640 visibility = [ ":skia" ] 640 visibility = [ ":skia" ]
641 } 641 }
642 642
643 test("skia_unittests") { 643 test("skia_unittests") {
644 sources = [ 644 sources = [
645 "ext/analysis_canvas_unittest.cc", 645 "ext/analysis_canvas_unittest.cc",
646 "ext/bitmap_platform_device_mac_unittest.cc",
647 "ext/convolver_unittest.cc", 646 "ext/convolver_unittest.cc",
648 "ext/image_operations_unittest.cc", 647 "ext/image_operations_unittest.cc",
649 "ext/platform_canvas_unittest.cc", 648 "ext/platform_canvas_unittest.cc",
650 "ext/recursive_gaussian_convolution_unittest.cc", 649 "ext/recursive_gaussian_convolution_unittest.cc",
651 "ext/skia_memory_dump_provider_unittest.cc", 650 "ext/skia_memory_dump_provider_unittest.cc",
652 "ext/skia_utils_ios_unittest.mm", 651 "ext/skia_utils_ios_unittest.mm",
653 "ext/skia_utils_mac_unittest.mm", 652 "ext/skia_utils_mac_unittest.mm",
654 ] 653 ]
655 654
656 if (!is_win && !is_mac && !use_cairo) { 655 if (!is_win) {
657 sources -= [ "ext/platform_canvas_unittest.cc" ] 656 sources -= [ "ext/platform_canvas_unittest.cc" ]
658 } 657 }
659 658
660 deps = [ 659 deps = [
661 ":skia", 660 ":skia",
662 "//base", 661 "//base",
663 "//mojo/edk/test:run_all_unittests", 662 "//mojo/edk/test:run_all_unittests",
664 "//testing/gtest", 663 "//testing/gtest",
665 "//ui/gfx", 664 "//ui/gfx",
666 "//ui/gfx/geometry", 665 "//ui/gfx/geometry",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 704
706 deps = [ 705 deps = [
707 ":skia", 706 ":skia",
708 "//base", 707 "//base",
709 "//base/test:test_support", 708 "//base/test:test_support",
710 "//build/config/sanitizers:deps", 709 "//build/config/sanitizers:deps",
711 "//build/win:default_exe_manifest", 710 "//build/win:default_exe_manifest",
712 ] 711 ]
713 } 712 }
714 } 713 }
OLDNEW
« no previous file with comments | « no previous file | skia/ext/bitmap_platform_device_mac_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698