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

Side by Side Diff: skia/BUILD.gn

Issue 975123003: Add remaining trivial targets for the Linux GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix other debug/component woes Created 5 years, 9 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 | « media/cast/BUILD.gn ('k') | sync/tools/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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 deps = [ 624 deps = [
625 ":skia", 625 ":skia",
626 "//base", 626 "//base",
627 "//base/test:run_all_unittests", 627 "//base/test:run_all_unittests",
628 "//cc:test_support", # TODO: Fix this test to not depend on cc. 628 "//cc:test_support", # TODO: Fix this test to not depend on cc.
629 "//testing/gtest", 629 "//testing/gtest",
630 "//ui/gfx", 630 "//ui/gfx",
631 "//ui/gfx/geometry", 631 "//ui/gfx/geometry",
632 ] 632 ]
633 } 633 }
634
635 if (is_linux && !is_chromeos) {
636 # TODO(GYP): Figure out which of these work and are needed on other platforms.
637 executable("image_operations_bench") {
638 sources = [
639 "ext/image_operations_bench.cc",
640 ]
641
642 deps = [
643 ":skia",
644 "//base",
645 ]
646 }
647
648 executable("filter_fuzz_stub") {
649 sources = [
650 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
651 ]
652
653 deps = [
654 ":skia",
655 "//base",
656 ]
657 }
658 }
OLDNEW
« no previous file with comments | « media/cast/BUILD.gn ('k') | sync/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698