Change relative includes to be absolute

Having all includes to skia source will make generating
BAZEL rules easier.

Change-Id: I318dfc88e736a62da151098bebbee8d7b357d963
Bug: skia:12541
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/474736
Reviewed-by: Ben Wagner <bungeman@google.com>
This commit is contained in:
Kevin Lubick 2021-11-22 11:56:39 -05:00
parent f9c68800a2
commit d4bcb486ef
4 changed files with 1207 additions and 1205 deletions

View File

@ -13,7 +13,7 @@
#include "include/effects/SkDashPathEffect.h"
// Repro case for skia:7674. Requires lots of RAM to run, and currently triggers UB:
// ../include/private/SkTDArray.h:382:26:
// //include/private/SkTDArray.h:382:26:
// runtime error: signed integer overflow: 2147483644 + 4 cannot be represented in type 'int'
static SK_UNUSED void path_measure_explosion(SkCanvas* canvas) {

View File

@ -4,5 +4,5 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "../egl/GrGLMakeEGLInterface.cpp"
#include "../egl/GrGLMakeNativeInterface_egl.cpp"
#include "src/gpu/gl/egl/GrGLMakeEGLInterface.cpp"
#include "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp"

File diff suppressed because it is too large Load Diff

View File

@ -12,4 +12,6 @@ with open('all_examples.cpp', 'w') as o:
'governed by a BSD-style license that can be found in the '
'LICENSE file.\n')
for path in sorted(glob.glob('../../docs/examples/*.cpp')):
# strip ../../
path = path[6:]
o.write('#include "%s"\n' % path)