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

Side by Side Diff: BUILD.gn

Issue 2271743002: Reland: Experimental parsing expression grammar (PEG) template library (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Fixes for MSan, g3 roll Created 4 years, 3 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 | experimental/svg/model/SkPEG.h » ('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 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 declare_args() { 6 declare_args() {
7 skia_enable_tools = !is_fuchsia && !is_component_build 7 skia_enable_tools = !is_fuchsia && !is_component_build
8 8
9 skia_use_expat = true 9 skia_use_expat = true
10 skia_use_giflib = !is_fuchsia 10 skia_use_giflib = !is_fuchsia
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 sources = 605 sources =
606 tests_sources - [ 606 tests_sources - [
607 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only 607 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only
608 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main 608 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main
609 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work 609 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work
610 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work 610 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work
611 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile 611 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile
612 rebase_path("tests/skia_test.cpp"), # alternate main 612 rebase_path("tests/skia_test.cpp"), # alternate main
613 ] 613 ]
614 deps = [ 614 deps = [
615 ":experimental_svg_model",
615 ":flags", 616 ":flags",
616 ":gpu_tool_utils", 617 ":gpu_tool_utils",
617 ":skia", 618 ":skia",
618 ":tool_utils", 619 ":tool_utils",
619 "//third_party/libpng", 620 "//third_party/libpng",
620 "//third_party/zlib", 621 "//third_party/zlib",
621 ] 622 ]
622 } 623 }
623 624
624 bench_sources = exec_script("gyp/find.py", 625 bench_sources = exec_script("gyp/find.py",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 "tools/SkShaper_harfbuzz.cpp", 724 "tools/SkShaper_harfbuzz.cpp",
724 "tools/using_skia_and_harfbuzz.cpp", 725 "tools/using_skia_and_harfbuzz.cpp",
725 ] 726 ]
726 deps = [ 727 deps = [
727 ":skia", 728 ":skia",
728 "//third_party/harfbuzz", 729 "//third_party/harfbuzz",
729 ] 730 ]
730 testonly = true 731 testonly = true
731 } 732 }
732 } 733 }
OLDNEW
« no previous file with comments | « no previous file | experimental/svg/model/SkPEG.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698