| 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 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 | 527 |
| 528 test_lib("experimental_svg_model") { | 528 test_lib("experimental_svg_model") { |
| 529 public_include_dirs = [ "experimental/svg/model" ] | 529 public_include_dirs = [ "experimental/svg/model" ] |
| 530 sources = [ | 530 sources = [ |
| 531 "experimental/svg/model/SkSVGAttribute.cpp", | 531 "experimental/svg/model/SkSVGAttribute.cpp", |
| 532 "experimental/svg/model/SkSVGAttributeParser.cpp", | 532 "experimental/svg/model/SkSVGAttributeParser.cpp", |
| 533 "experimental/svg/model/SkSVGContainer.cpp", | 533 "experimental/svg/model/SkSVGContainer.cpp", |
| 534 "experimental/svg/model/SkSVGCircle.cpp", | 534 "experimental/svg/model/SkSVGCircle.cpp", |
| 535 "experimental/svg/model/SkSVGDOM.cpp", | 535 "experimental/svg/model/SkSVGDOM.cpp", |
| 536 "experimental/svg/model/SkSVGEllipse.cpp", | 536 "experimental/svg/model/SkSVGEllipse.cpp", |
| 537 "experimental/svg/model/SkSVGLine.cpp", |
| 537 "experimental/svg/model/SkSVGNode.cpp", | 538 "experimental/svg/model/SkSVGNode.cpp", |
| 538 "experimental/svg/model/SkSVGPath.cpp", | 539 "experimental/svg/model/SkSVGPath.cpp", |
| 539 "experimental/svg/model/SkSVGPoly.cpp", | 540 "experimental/svg/model/SkSVGPoly.cpp", |
| 540 "experimental/svg/model/SkSVGRect.cpp", | 541 "experimental/svg/model/SkSVGRect.cpp", |
| 541 "experimental/svg/model/SkSVGRenderContext.cpp", | 542 "experimental/svg/model/SkSVGRenderContext.cpp", |
| 542 "experimental/svg/model/SkSVGSVG.cpp", | 543 "experimental/svg/model/SkSVGSVG.cpp", |
| 543 "experimental/svg/model/SkSVGShape.cpp", | 544 "experimental/svg/model/SkSVGShape.cpp", |
| 544 "experimental/svg/model/SkSVGTransformableNode.cpp", | 545 "experimental/svg/model/SkSVGTransformableNode.cpp", |
| 545 "experimental/svg/model/SkSVGValue.cpp", | 546 "experimental/svg/model/SkSVGValue.cpp", |
| 546 ] | 547 ] |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 "tools/SkShaper_harfbuzz.cpp", | 604 "tools/SkShaper_harfbuzz.cpp", |
| 604 "tools/using_skia_and_harfbuzz.cpp", | 605 "tools/using_skia_and_harfbuzz.cpp", |
| 605 ] | 606 ] |
| 606 deps = [ | 607 deps = [ |
| 607 ":skia", | 608 ":skia", |
| 608 "//third_party/harfbuzz", | 609 "//third_party/harfbuzz", |
| 609 ] | 610 ] |
| 610 testonly = true | 611 testonly = true |
| 611 } | 612 } |
| 612 } | 613 } |
| OLD | NEW |