| Index: BUILD.gn
 | 
| diff --git a/BUILD.gn b/BUILD.gn
 | 
| index 0780f1b52298c64c964ccde142a5c01902bf2b13..067e645c9902d37769ca6f7f679c06946fce365d 100644
 | 
| --- a/BUILD.gn
 | 
| +++ b/BUILD.gn
 | 
| @@ -496,6 +496,27 @@ test_lib("bench") {
 | 
|    ]
 | 
|  }
 | 
|  
 | 
| +test_lib("experimental_svg_model") {
 | 
| +  public_include_dirs = [ "experimental/svg/model" ]
 | 
| +  sources = [
 | 
| +    "experimental/svg/model/SkSVGAttribute.cpp",
 | 
| +    "experimental/svg/model/SkSVGAttributeParser.cpp",
 | 
| +    "experimental/svg/model/SkSVGContainer.cpp",
 | 
| +    "experimental/svg/model/SkSVGDOM.cpp",
 | 
| +    "experimental/svg/model/SkSVGNode.cpp",
 | 
| +    "experimental/svg/model/SkSVGPath.cpp",
 | 
| +    "experimental/svg/model/SkSVGRect.cpp",
 | 
| +    "experimental/svg/model/SkSVGRenderContext.cpp",
 | 
| +    "experimental/svg/model/SkSVGSVG.cpp",
 | 
| +    "experimental/svg/model/SkSVGShape.cpp",
 | 
| +    "experimental/svg/model/SkSVGTransformableNode.cpp",
 | 
| +    "experimental/svg/model/SkSVGValue.cpp",
 | 
| +  ]
 | 
| +  deps = [
 | 
| +    ":skia",
 | 
| +  ]
 | 
| +}
 | 
| +
 | 
|  if (!is_component_build) {  # Our test tools use many non-SK_API APIs...
 | 
|    executable("dm") {
 | 
|      sources = [
 | 
| @@ -505,6 +526,7 @@ if (!is_component_build) {  # Our test tools use many non-SK_API APIs...
 | 
|      ]
 | 
|      include_dirs = [ "tests" ]
 | 
|      deps = [
 | 
| +      ":experimental_svg_model",
 | 
|        ":flags",
 | 
|        ":gm",
 | 
|        ":gpu_tool_utils",
 | 
| 
 |