OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |