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 } | 7 } |
8 | 8 |
9 skia_public_includes = [ | 9 skia_public_includes = [ |
10 "include/android", | 10 "include/android", |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 public_include_dirs = [ "tests" ] | 492 public_include_dirs = [ "tests" ] |
493 sources = tests_sources - [ | 493 sources = tests_sources - [ |
494 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only | 494 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only |
495 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main | 495 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main |
496 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work | 496 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work |
497 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work | 497 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work |
498 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile | 498 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile |
499 rebase_path("tests/skia_test.cpp"), # alternate main | 499 rebase_path("tests/skia_test.cpp"), # alternate main |
500 ] | 500 ] |
501 deps = [ | 501 deps = [ |
| 502 ":experimental_svg_model", |
502 ":flags", | 503 ":flags", |
503 ":gpu_tool_utils", | 504 ":gpu_tool_utils", |
504 ":skia", | 505 ":skia", |
505 ":tool_utils", | 506 ":tool_utils", |
506 "//third_party/libpng", | 507 "//third_party/libpng", |
507 "//third_party/zlib", | 508 "//third_party/zlib", |
508 ] | 509 ] |
509 } | 510 } |
510 | 511 |
511 bench_sources = exec_script("gyp/find.py", | 512 bench_sources = exec_script("gyp/find.py", |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 "tools/SkShaper_harfbuzz.cpp", | 612 "tools/SkShaper_harfbuzz.cpp", |
612 "tools/using_skia_and_harfbuzz.cpp", | 613 "tools/using_skia_and_harfbuzz.cpp", |
613 ] | 614 ] |
614 deps = [ | 615 deps = [ |
615 ":skia", | 616 ":skia", |
616 "//third_party/harfbuzz", | 617 "//third_party/harfbuzz", |
617 ] | 618 ] |
618 testonly = true | 619 testonly = true |
619 } | 620 } |
620 } | 621 } |
OLD | NEW |