| 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 ":tool_utils", | 514 ":tool_utils", |
| 515 ] | 515 ] |
| 516 } | 516 } |
| 517 | 517 |
| 518 test_lib("experimental_svg_model") { | 518 test_lib("experimental_svg_model") { |
| 519 public_include_dirs = [ "experimental/svg/model" ] | 519 public_include_dirs = [ "experimental/svg/model" ] |
| 520 sources = [ | 520 sources = [ |
| 521 "experimental/svg/model/SkSVGAttribute.cpp", | 521 "experimental/svg/model/SkSVGAttribute.cpp", |
| 522 "experimental/svg/model/SkSVGAttributeParser.cpp", | 522 "experimental/svg/model/SkSVGAttributeParser.cpp", |
| 523 "experimental/svg/model/SkSVGContainer.cpp", | 523 "experimental/svg/model/SkSVGContainer.cpp", |
| 524 "experimental/svg/model/SkSVGCircle.cpp", |
| 524 "experimental/svg/model/SkSVGDOM.cpp", | 525 "experimental/svg/model/SkSVGDOM.cpp", |
| 526 "experimental/svg/model/SkSVGEllipse.cpp", |
| 525 "experimental/svg/model/SkSVGNode.cpp", | 527 "experimental/svg/model/SkSVGNode.cpp", |
| 526 "experimental/svg/model/SkSVGPath.cpp", | 528 "experimental/svg/model/SkSVGPath.cpp", |
| 527 "experimental/svg/model/SkSVGPoly.cpp", | 529 "experimental/svg/model/SkSVGPoly.cpp", |
| 528 "experimental/svg/model/SkSVGRect.cpp", | 530 "experimental/svg/model/SkSVGRect.cpp", |
| 529 "experimental/svg/model/SkSVGRenderContext.cpp", | 531 "experimental/svg/model/SkSVGRenderContext.cpp", |
| 530 "experimental/svg/model/SkSVGSVG.cpp", | 532 "experimental/svg/model/SkSVGSVG.cpp", |
| 531 "experimental/svg/model/SkSVGShape.cpp", | 533 "experimental/svg/model/SkSVGShape.cpp", |
| 532 "experimental/svg/model/SkSVGTransformableNode.cpp", | 534 "experimental/svg/model/SkSVGTransformableNode.cpp", |
| 533 "experimental/svg/model/SkSVGValue.cpp", | 535 "experimental/svg/model/SkSVGValue.cpp", |
| 534 ] | 536 ] |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 "tools/SkShaper_harfbuzz.cpp", | 593 "tools/SkShaper_harfbuzz.cpp", |
| 592 "tools/using_skia_and_harfbuzz.cpp", | 594 "tools/using_skia_and_harfbuzz.cpp", |
| 593 ] | 595 ] |
| 594 deps = [ | 596 deps = [ |
| 595 ":skia", | 597 ":skia", |
| 596 "//third_party/harfbuzz", | 598 "//third_party/harfbuzz", |
| 597 ] | 599 ] |
| 598 testonly = true | 600 testonly = true |
| 599 } | 601 } |
| 600 } | 602 } |
| OLD | NEW |