| 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 import("//gn/shared_sources.gni") | 6 import("//gn/shared_sources.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 skia_enable_tools = !is_fuchsia && !is_component_build | 9 skia_enable_tools = !is_fuchsia && !is_component_build |
| 10 | 10 |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 test_lib("experimental_svg_model") { | 715 test_lib("experimental_svg_model") { |
| 716 public_include_dirs = [ "experimental/svg/model" ] | 716 public_include_dirs = [ "experimental/svg/model" ] |
| 717 sources = [ | 717 sources = [ |
| 718 "experimental/svg/model/SkSVGAttribute.cpp", | 718 "experimental/svg/model/SkSVGAttribute.cpp", |
| 719 "experimental/svg/model/SkSVGAttributeParser.cpp", | 719 "experimental/svg/model/SkSVGAttributeParser.cpp", |
| 720 "experimental/svg/model/SkSVGCircle.cpp", | 720 "experimental/svg/model/SkSVGCircle.cpp", |
| 721 "experimental/svg/model/SkSVGContainer.cpp", | 721 "experimental/svg/model/SkSVGContainer.cpp", |
| 722 "experimental/svg/model/SkSVGDOM.cpp", | 722 "experimental/svg/model/SkSVGDOM.cpp", |
| 723 "experimental/svg/model/SkSVGEllipse.cpp", | 723 "experimental/svg/model/SkSVGEllipse.cpp", |
| 724 "experimental/svg/model/SkSVGLine.cpp", | 724 "experimental/svg/model/SkSVGLine.cpp", |
| 725 "experimental/svg/model/SkSVGLinearGradient.cpp", |
| 725 "experimental/svg/model/SkSVGNode.cpp", | 726 "experimental/svg/model/SkSVGNode.cpp", |
| 726 "experimental/svg/model/SkSVGPath.cpp", | 727 "experimental/svg/model/SkSVGPath.cpp", |
| 727 "experimental/svg/model/SkSVGPoly.cpp", | 728 "experimental/svg/model/SkSVGPoly.cpp", |
| 728 "experimental/svg/model/SkSVGRect.cpp", | 729 "experimental/svg/model/SkSVGRect.cpp", |
| 729 "experimental/svg/model/SkSVGRenderContext.cpp", | 730 "experimental/svg/model/SkSVGRenderContext.cpp", |
| 730 "experimental/svg/model/SkSVGSVG.cpp", | 731 "experimental/svg/model/SkSVGSVG.cpp", |
| 731 "experimental/svg/model/SkSVGShape.cpp", | 732 "experimental/svg/model/SkSVGShape.cpp", |
| 733 "experimental/svg/model/SkSVGStop.cpp", |
| 732 "experimental/svg/model/SkSVGTransformableNode.cpp", | 734 "experimental/svg/model/SkSVGTransformableNode.cpp", |
| 733 "experimental/svg/model/SkSVGValue.cpp", | 735 "experimental/svg/model/SkSVGValue.cpp", |
| 734 ] | 736 ] |
| 735 deps = [ | 737 deps = [ |
| 736 ":skia", | 738 ":skia", |
| 737 ] | 739 ] |
| 738 } | 740 } |
| 739 | 741 |
| 740 executable("dm") { | 742 executable("dm") { |
| 741 sources = [ | 743 sources = [ |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 sources = [ | 804 sources = [ |
| 803 "tools/SkShaper_primitive.cpp", | 805 "tools/SkShaper_primitive.cpp", |
| 804 "tools/using_skia_and_harfbuzz.cpp", | 806 "tools/using_skia_and_harfbuzz.cpp", |
| 805 ] | 807 ] |
| 806 deps = [ | 808 deps = [ |
| 807 ":skia", | 809 ":skia", |
| 808 ] | 810 ] |
| 809 testonly = true | 811 testonly = true |
| 810 } | 812 } |
| 811 } | 813 } |
| OLD | NEW |