aboutsummaryrefslogtreecommitdiff
path: root/tests/DiscardableMemoryTest.cpp
diff options
context:
space:
mode:
authorMike Klein <mtklein@google.com>2019-04-23 12:05:21 -0500
committerSkia Commit-Bot <skia-commit-bot@chromium.org>2019-04-24 16:27:11 +0000
commitc0bd9f9fe533a7b8644392240c1250195aaee537 (patch)
tree23a6c7d48d9373dbad1e63f1f78a8943e1b75e4a /tests/DiscardableMemoryTest.cpp
parent0c229970754242a038c91328873197c62d60770d (diff)
downloadskia-c0bd9f9fe533a7b8644392240c1250195aaee537.tar.gz
rewrite includes to not need so much -Ifoo
Current strategy: everything from the top Things to look at first are the manual changes: - added tools/rewrite_includes.py - removed -Idirectives from BUILD.gn - various compile.sh simplifications - tweak tools/embed_resources.py - update gn/find_headers.py to write paths from the top - update gn/gn_to_bp.py SkUserConfig.h layout so that #include "include/config/SkUserConfig.h" always gets the header we want. No-Presubmit: true Change-Id: I73a4b181654e0e38d229bc456c0d0854bae3363e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209706 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Hal Canary <halcanary@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Reviewed-by: Florin Malita <fmalita@chromium.org>
Diffstat (limited to 'tests/DiscardableMemoryTest.cpp')
-rw-r--r--tests/DiscardableMemoryTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/DiscardableMemoryTest.cpp b/tests/DiscardableMemoryTest.cpp
index 8447e4d45c..cb901243e1 100644
--- a/tests/DiscardableMemoryTest.cpp
+++ b/tests/DiscardableMemoryTest.cpp
@@ -5,10 +5,10 @@
* found in the LICENSE file.
*/
-#include "SkDiscardableMemory.h"
-#include "SkDiscardableMemoryPool.h"
-#include "SkRefCnt.h"
-#include "Test.h"
+#include "include/core/SkRefCnt.h"
+#include "src/core/SkDiscardableMemory.h"
+#include "src/lazy/SkDiscardableMemoryPool.h"
+#include "tests/Test.h"
#include <cstring>
#include <memory>