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

Side by Side Diff: skia/BUILD.gn

Issue 2004743002: [iOS/GN] Fix the compilation of "all" on iOS with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « services/shell/standalone/BUILD.gn ('k') | third_party/WebKit/Source/wtf/BUILD.gn » ('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("//testing/test.gni") 7 import("//testing/test.gni")
8 if (current_cpu == "arm") { 8 if (current_cpu == "arm") {
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 } 10 }
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 "//testing/gtest", 700 "//testing/gtest",
701 "//ui/gfx", 701 "//ui/gfx",
702 "//ui/gfx/geometry", 702 "//ui/gfx/geometry",
703 ] 703 ]
704 704
705 if (!is_ios) { 705 if (!is_ios) {
706 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. 706 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc.
707 } 707 }
708 } 708 }
709 709
710 executable("image_operations_bench") { 710 if (!is_ios) {
711 sources = [ 711 executable("image_operations_bench") {
712 "ext/image_operations_bench.cc", 712 sources = [
713 ] 713 "ext/image_operations_bench.cc",
714 ]
714 715
715 deps = [ 716 deps = [
716 ":skia", 717 ":skia",
717 "//base", 718 "//base",
718 "//build/config/sanitizers:deps", 719 "//build/config/sanitizers:deps",
719 ] 720 ]
721 }
722
723 executable("filter_fuzz_stub") {
724 testonly = true
725 sources = [
726 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
727 ]
728
729 deps = [
730 ":skia",
731 "//base",
732 "//base/test:test_support",
733 "//build/config/sanitizers:deps",
734 ]
735 }
720 } 736 }
721
722 executable("filter_fuzz_stub") {
723 testonly = true
724 sources = [
725 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
726 ]
727
728 deps = [
729 ":skia",
730 "//base",
731 "//base/test:test_support",
732 "//build/config/sanitizers:deps",
733 ]
734 }
OLDNEW
« no previous file with comments | « services/shell/standalone/BUILD.gn ('k') | third_party/WebKit/Source/wtf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698