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

Side by Side Diff: gyp/core.gypi

Issue 1346713002: move SkBitmapProvider to its own file (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix spelling 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
« no previous file with comments | « no previous file | src/core/SkBitmapController.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'core' files 5 # Include this gypi to include all 'core' 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_src_path)/core/SkBitmapFilter.cpp', 32 '<(skia_src_path)/core/SkBitmapFilter.cpp',
33 '<(skia_src_path)/core/SkBitmapHeap.cpp', 33 '<(skia_src_path)/core/SkBitmapHeap.cpp',
34 '<(skia_src_path)/core/SkBitmapHeap.h', 34 '<(skia_src_path)/core/SkBitmapHeap.h',
35 '<(skia_src_path)/core/SkBitmapProcShader.cpp', 35 '<(skia_src_path)/core/SkBitmapProcShader.cpp',
36 '<(skia_src_path)/core/SkBitmapProcShader.h', 36 '<(skia_src_path)/core/SkBitmapProcShader.h',
37 '<(skia_src_path)/core/SkBitmapProcState.cpp', 37 '<(skia_src_path)/core/SkBitmapProcState.cpp',
38 '<(skia_src_path)/core/SkBitmapProcState.h', 38 '<(skia_src_path)/core/SkBitmapProcState.h',
39 '<(skia_src_path)/core/SkBitmapProcState_matrix.h', 39 '<(skia_src_path)/core/SkBitmapProcState_matrix.h',
40 '<(skia_src_path)/core/SkBitmapProcState_matrixProcs.cpp', 40 '<(skia_src_path)/core/SkBitmapProcState_matrixProcs.cpp',
41 '<(skia_src_path)/core/SkBitmapProcState_sample.h', 41 '<(skia_src_path)/core/SkBitmapProcState_sample.h',
42 '<(skia_src_path)/core/SkBitmapProvider.cpp',
43 '<(skia_src_path)/core/SkBitmapProvider.h',
42 '<(skia_src_path)/core/SkBitmapScaler.h', 44 '<(skia_src_path)/core/SkBitmapScaler.h',
43 '<(skia_src_path)/core/SkBitmapScaler.cpp', 45 '<(skia_src_path)/core/SkBitmapScaler.cpp',
44 '<(skia_src_path)/core/SkBlitBWMaskTemplate.h', 46 '<(skia_src_path)/core/SkBlitBWMaskTemplate.h',
45 '<(skia_src_path)/core/SkBlitMask_D32.cpp', 47 '<(skia_src_path)/core/SkBlitMask_D32.cpp',
46 '<(skia_src_path)/core/SkBlitRow_D16.cpp', 48 '<(skia_src_path)/core/SkBlitRow_D16.cpp',
47 '<(skia_src_path)/core/SkBlitRow_D32.cpp', 49 '<(skia_src_path)/core/SkBlitRow_D32.cpp',
48 '<(skia_src_path)/core/SkBlitter.h', 50 '<(skia_src_path)/core/SkBlitter.h',
49 '<(skia_src_path)/core/SkBlitter.cpp', 51 '<(skia_src_path)/core/SkBlitter.cpp',
50 '<(skia_src_path)/core/SkBlitter_A8.cpp', 52 '<(skia_src_path)/core/SkBlitter_A8.cpp',
51 '<(skia_src_path)/core/SkBlitter_ARGB32.cpp', 53 '<(skia_src_path)/core/SkBlitter_ARGB32.cpp',
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 '<(skia_src_path)/pathops/SkPathOpsLine.h', 403 '<(skia_src_path)/pathops/SkPathOpsLine.h',
402 '<(skia_src_path)/pathops/SkPathOpsPoint.h', 404 '<(skia_src_path)/pathops/SkPathOpsPoint.h',
403 '<(skia_src_path)/pathops/SkPathOpsQuad.h', 405 '<(skia_src_path)/pathops/SkPathOpsQuad.h',
404 '<(skia_src_path)/pathops/SkPathOpsRect.h', 406 '<(skia_src_path)/pathops/SkPathOpsRect.h',
405 '<(skia_src_path)/pathops/SkPathOpsTSect.h', 407 '<(skia_src_path)/pathops/SkPathOpsTSect.h',
406 '<(skia_src_path)/pathops/SkPathOpsTypes.h', 408 '<(skia_src_path)/pathops/SkPathOpsTypes.h',
407 '<(skia_src_path)/pathops/SkPathWriter.h', 409 '<(skia_src_path)/pathops/SkPathWriter.h',
408 '<(skia_src_path)/pathops/SkReduceOrder.h', 410 '<(skia_src_path)/pathops/SkReduceOrder.h',
409 ], 411 ],
410 } 412 }
OLDNEW
« no previous file with comments | « no previous file | src/core/SkBitmapController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698