| 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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 rebase_path("tests"), | 450 rebase_path("tests"), |
| 451 ], | 451 ], |
| 452 "list lines", | 452 "list lines", |
| 453 []) | 453 []) |
| 454 | 454 |
| 455 test_lib("tests") { | 455 test_lib("tests") { |
| 456 public_include_dirs = [ "tests" ] | 456 public_include_dirs = [ "tests" ] |
| 457 sources = tests_sources - [ | 457 sources = tests_sources - [ |
| 458 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only | 458 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only |
| 459 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main | 459 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main |
| 460 rebase_path("tests/RTConfRegistryTest.cpp"), # TODO: delete | |
| 461 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work | 460 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work |
| 462 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work | 461 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work |
| 463 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile | 462 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile |
| 464 rebase_path("tests/skia_test.cpp"), # alternate main | 463 rebase_path("tests/skia_test.cpp"), # alternate main |
| 465 ] | 464 ] |
| 466 deps = [ | 465 deps = [ |
| 467 ":flags", | 466 ":flags", |
| 468 ":gpu_tool_utils", | 467 ":gpu_tool_utils", |
| 469 ":skia", | 468 ":skia", |
| 470 ":tool_utils", | 469 ":tool_utils", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 ":flags", | 537 ":flags", |
| 539 ":gm", | 538 ":gm", |
| 540 ":gpu_tool_utils", | 539 ":gpu_tool_utils", |
| 541 ":skia", | 540 ":skia", |
| 542 ":tool_utils", | 541 ":tool_utils", |
| 543 "//third_party/jsoncpp", | 542 "//third_party/jsoncpp", |
| 544 ] | 543 ] |
| 545 testonly = true | 544 testonly = true |
| 546 } | 545 } |
| 547 } | 546 } |
| OLD | NEW |