diff options
author | halcanary <halcanary@google.com> | 2016-08-24 14:42:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-24 14:42:08 -0700 |
commit | e59cb1c1f1ab8f0a610889f4de9b3f20e174a94d (patch) | |
tree | 79dbcb289596c49c994d66aa9c9db77c9b41f397 /src/pdf | |
parent | 168261287136b3e26d079f3b6383f9dd5a975069 (diff) |
SkPDF: set SK_SFNTLY_SUBSETTER uniformly
When Skia is built into the Android framework,
SK_SFNTLY_SUBSETTER="sample/chromium/font_subsetter.h".
This #includes the same value for GOOGLE3.
Once Chrome is also using this value, we can do away with
the `#ifdef GOOGLE3` line.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2272103002
Review-Url: https://codereview.chromium.org/2272103002
Diffstat (limited to 'src/pdf')
-rw-r--r-- | src/pdf/SkPDFFont.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdf/SkPDFFont.cpp b/src/pdf/SkPDFFont.cpp index a05462c4fb..2619724cbb 100644 --- a/src/pdf/SkPDFFont.cpp +++ b/src/pdf/SkPDFFont.cpp @@ -25,7 +25,7 @@ #if defined (SK_SFNTLY_SUBSETTER) #if defined (GOOGLE3) // #including #defines doesn't work with this build system. - #include "typography/font/sfntly/src/sample/chromium/font_subsetter.h" + #include "sample/chromium/font_subsetter.h" #else #include SK_SFNTLY_SUBSETTER #endif |