aboutsummaryrefslogtreecommitdiff
path: root/bench/AndroidCodecBench.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 /bench/AndroidCodecBench.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 'bench/AndroidCodecBench.cpp')
-rw-r--r--bench/AndroidCodecBench.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/bench/AndroidCodecBench.cpp b/bench/AndroidCodecBench.cpp
index ba92a7478d..96f50c6581 100644
--- a/bench/AndroidCodecBench.cpp
+++ b/bench/AndroidCodecBench.cpp
@@ -5,12 +5,12 @@
* found in the LICENSE file.
*/
-#include "AndroidCodecBench.h"
-#include "CodecBenchPriv.h"
-#include "CommandLineFlags.h"
-#include "SkAndroidCodec.h"
-#include "SkBitmap.h"
-#include "SkOSFile.h"
+#include "bench/AndroidCodecBench.h"
+#include "bench/CodecBenchPriv.h"
+#include "include/codec/SkAndroidCodec.h"
+#include "include/core/SkBitmap.h"
+#include "src/core/SkOSFile.h"
+#include "tools/flags/CommandLineFlags.h"
AndroidCodecBench::AndroidCodecBench(SkString baseName, SkData* encoded, int sampleSize)
: fData(SkRef(encoded))