Chromium Code Reviews| Index: public.bzl |
| diff --git a/public.bzl b/public.bzl |
| index 9f5c9c2f928197d7f37f1705124bbd8fd335078f..dd4c526262435f0f7092a9cbfa99d816570c7565 100644 |
| --- a/public.bzl |
| +++ b/public.bzl |
| @@ -114,7 +114,8 @@ BASE_SRCS_ALL = struct( |
| # Exclude files that don't compile with the current DEFINES. |
| "src/gpu/gl/mesa/*", # Requires SK_MESA define. |
| - "src/svg/parser/*", # Missing SkSVG.h. |
| + "src/svg/**/*", # Depends on XML. |
| + "src/xml/**/*", |
| # Conflicting dependencies among Lua versions. See cl/107087297. |
| "src/utils/SkLua*", |
| @@ -122,9 +123,6 @@ BASE_SRCS_ALL = struct( |
| # Not used. |
| "src/animator/**/*", |
| "src/views/**/*", |
| - "src/xml/SkBML_Verbs.h", |
| - "src/xml/SkBML_XMLParser.cpp", |
| - "src/xml/SkXMLPullParser.cpp", |
| # Currently exclude all vulkan specific files |
| "src/gpu/vk/*", |
| @@ -325,9 +323,9 @@ BASE_HDRS = struct( |
| exclude = PRIVATE_HDRS_LIST + [ |
|
mtklein
2016/07/15 16:48:01
FWIW, we probably don't need to exclude anything b
dogben
2016/07/15 17:45:36
Done.
|
| # Not used. |
| "include/animator/**/*", |
| + "include/svg/**/*", |
| "include/views/**/*", |
| - "include/xml/SkBML_WXMLParser.h", |
| - "include/xml/SkBML_XMLParser.h", |
| + "include/xml/**/*", |
| ], |
| ) |
| @@ -425,6 +423,7 @@ DM_SRCS_ALL = struct( |
| "tests/skia_test.cpp", # Old main. |
| "tests/SkpSkGrTest.cpp", # Alternate main. |
| "tests/SkSLErrorTest.cpp", # Excluded along with Vulkan. |
| + "tests/SVGDeviceTest.cpp", |
| "tools/gpu/gl/angle/*", |
| "tools/gpu/gl/command_buffer/*", |
| "tools/gpu/gl/egl/*", |