aboutsummaryrefslogtreecommitdiff
path: root/bench/DashBench.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/DashBench.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/DashBench.cpp')
-rw-r--r--bench/DashBench.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/bench/DashBench.cpp b/bench/DashBench.cpp
index 7c3df8ad90..99ca57635e 100644
--- a/bench/DashBench.cpp
+++ b/bench/DashBench.cpp
@@ -4,16 +4,16 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-#include "Benchmark.h"
-#include "SkBitmap.h"
-#include "SkCanvas.h"
-#include "SkDashPathEffect.h"
-#include "SkPaint.h"
-#include "SkPath.h"
-#include "SkRandom.h"
-#include "SkString.h"
-#include "SkStrokeRec.h"
-#include "SkTDArray.h"
+#include "bench/Benchmark.h"
+#include "include/core/SkBitmap.h"
+#include "include/core/SkCanvas.h"
+#include "include/core/SkPaint.h"
+#include "include/core/SkPath.h"
+#include "include/core/SkString.h"
+#include "include/core/SkStrokeRec.h"
+#include "include/effects/SkDashPathEffect.h"
+#include "include/private/SkTDArray.h"
+#include "include/utils/SkRandom.h"
/*