Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: gyp/utils.gypi

Issue 1288963002: Provides multiple implementations of Android's SkBitmapRegionDecoder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Acknowledged a subtle bug in the test Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Include this gypi to include all 'utils' files 5 # Include this gypi to include all 'utils' files
6 # The parent gyp/gypi file must define 6 # The parent gyp/gypi file must define
7 # 'skia_src_path' e.g. skia/trunk/src 7 # 'skia_src_path' e.g. skia/trunk/src
8 # 'skia_include_path' e.g. skia/trunk/include 8 # 'skia_include_path' e.g. skia/trunk/include
9 # 9 #
10 # The skia build defines these in common_variables.gypi 10 # The skia build defines these in common_variables.gypi
(...skipping 21 matching lines...) Expand all
32 '<(skia_include_path)/utils/SkParse.h', 32 '<(skia_include_path)/utils/SkParse.h',
33 '<(skia_include_path)/utils/SkParsePaint.h', 33 '<(skia_include_path)/utils/SkParsePaint.h',
34 '<(skia_include_path)/utils/SkParsePath.h', 34 '<(skia_include_path)/utils/SkParsePath.h',
35 '<(skia_include_path)/utils/SkPictureUtils.h', 35 '<(skia_include_path)/utils/SkPictureUtils.h',
36 '<(skia_include_path)/utils/SkRandom.h', 36 '<(skia_include_path)/utils/SkRandom.h',
37 '<(skia_include_path)/utils/SkRTConf.h', 37 '<(skia_include_path)/utils/SkRTConf.h',
38 '<(skia_include_path)/utils/SkTextBox.h', 38 '<(skia_include_path)/utils/SkTextBox.h',
39 39
40 '<(skia_src_path)/utils/SkBase64.cpp', 40 '<(skia_src_path)/utils/SkBase64.cpp',
41 '<(skia_src_path)/utils/SkBase64.h', 41 '<(skia_src_path)/utils/SkBase64.h',
42 '<(skia_src_path)/utils/SkBitmapRegionCanvas.cpp',
43 '<(skia_src_path)/utils/SkBitmapRegionDecoder.cpp',
44 '<(skia_src_path)/utils/SkBitmapRegionSampler.cpp',
42 '<(skia_src_path)/utils/SkBitmapHasher.cpp', 45 '<(skia_src_path)/utils/SkBitmapHasher.cpp',
43 '<(skia_src_path)/utils/SkBitmapHasher.h', 46 '<(skia_src_path)/utils/SkBitmapHasher.h',
44 '<(skia_src_path)/utils/SkBitSet.cpp', 47 '<(skia_src_path)/utils/SkBitSet.cpp',
45 '<(skia_src_path)/utils/SkBitSet.h', 48 '<(skia_src_path)/utils/SkBitSet.h',
46 '<(skia_src_path)/utils/SkBoundaryPatch.cpp', 49 '<(skia_src_path)/utils/SkBoundaryPatch.cpp',
47 '<(skia_src_path)/utils/SkFrontBufferedStream.cpp', 50 '<(skia_src_path)/utils/SkFrontBufferedStream.cpp',
48 '<(skia_src_path)/utils/SkCamera.cpp', 51 '<(skia_src_path)/utils/SkCamera.cpp',
49 '<(skia_src_path)/utils/SkCanvasStack.h', 52 '<(skia_src_path)/utils/SkCanvasStack.h',
50 '<(skia_src_path)/utils/SkCanvasStack.cpp', 53 '<(skia_src_path)/utils/SkCanvasStack.cpp',
51 '<(skia_src_path)/utils/SkCanvasStateUtils.cpp', 54 '<(skia_src_path)/utils/SkCanvasStateUtils.cpp',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 128
126 #testing 129 #testing
127 '<(skia_src_path)/fonts/SkGScalerContext.cpp', 130 '<(skia_src_path)/fonts/SkGScalerContext.cpp',
128 '<(skia_src_path)/fonts/SkGScalerContext.h', 131 '<(skia_src_path)/fonts/SkGScalerContext.h',
129 '<(skia_src_path)/fonts/SkRandomScalerContext.cpp', 132 '<(skia_src_path)/fonts/SkRandomScalerContext.cpp',
130 '<(skia_src_path)/fonts/SkRandomScalerContext.h', 133 '<(skia_src_path)/fonts/SkRandomScalerContext.h',
131 '<(skia_src_path)/fonts/SkTestScalerContext.cpp', 134 '<(skia_src_path)/fonts/SkTestScalerContext.cpp',
132 '<(skia_src_path)/fonts/SkTestScalerContext.h', 135 '<(skia_src_path)/fonts/SkTestScalerContext.h',
133 ], 136 ],
134 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698