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

Side by Side Diff: gyp/core.gypi

Issue 2389983002: Refactored SkColorSpace and added in a Lab PCS GM (Closed)
Patch Set: migrated call from SkColorSpace_Base::makeLinearGamma() to SkColorSpace_XYZ::makeLinearGamma() Created 4 years, 2 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 | « gm/labpcsdemo.cpp ('k') | resources/icc_profiles/srgb_lab_pcs.icc » ('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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 '<(skia_src_path)/core/SkChunkAlloc.cpp', 70 '<(skia_src_path)/core/SkChunkAlloc.cpp',
71 '<(skia_src_path)/core/SkClipStack.cpp', 71 '<(skia_src_path)/core/SkClipStack.cpp',
72 '<(skia_src_path)/core/SkColor.cpp', 72 '<(skia_src_path)/core/SkColor.cpp',
73 '<(skia_src_path)/core/SkColorFilter.cpp', 73 '<(skia_src_path)/core/SkColorFilter.cpp',
74 '<(skia_src_path)/core/SkColorFilterShader.cpp', 74 '<(skia_src_path)/core/SkColorFilterShader.cpp',
75 '<(skia_src_path)/core/SkColorMatrixFilterRowMajor255.cpp', 75 '<(skia_src_path)/core/SkColorMatrixFilterRowMajor255.cpp',
76 '<(skia_src_path)/core/SkColorMatrixFilterRowMajor255.h', 76 '<(skia_src_path)/core/SkColorMatrixFilterRowMajor255.h',
77 '<(skia_src_path)/core/SkColorShader.cpp', 77 '<(skia_src_path)/core/SkColorShader.cpp',
78 '<(skia_src_path)/core/SkColorShader.h', 78 '<(skia_src_path)/core/SkColorShader.h',
79 '<(skia_src_path)/core/SkColorSpace.cpp', 79 '<(skia_src_path)/core/SkColorSpace.cpp',
80 '<(skia_src_path)/core/SkColorSpace_A2B.cpp',
81 '<(skia_src_path)/core/SkColorSpace_A2B.h',
82 '<(skia_src_path)/core/SkColorSpace_XYZ.cpp',
83 '<(skia_src_path)/core/SkColorSpace_XYZ.h',
80 '<(skia_src_path)/core/SkColorSpace_ICC.cpp', 84 '<(skia_src_path)/core/SkColorSpace_ICC.cpp',
81 '<(skia_src_path)/core/SkColorSpaceXform.cpp', 85 '<(skia_src_path)/core/SkColorSpaceXform.cpp',
82 '<(skia_src_path)/core/SkColorTable.cpp', 86 '<(skia_src_path)/core/SkColorTable.cpp',
83 '<(skia_src_path)/core/SkComposeShader.cpp', 87 '<(skia_src_path)/core/SkComposeShader.cpp',
84 '<(skia_src_path)/core/SkConfig8888.cpp', 88 '<(skia_src_path)/core/SkConfig8888.cpp',
85 '<(skia_src_path)/core/SkConfig8888.h', 89 '<(skia_src_path)/core/SkConfig8888.h',
86 '<(skia_src_path)/core/SkConvolver.cpp', 90 '<(skia_src_path)/core/SkConvolver.cpp',
87 '<(skia_src_path)/core/SkConvolver.h', 91 '<(skia_src_path)/core/SkConvolver.h',
88 '<(skia_src_path)/core/SkCoreBlitters.h', 92 '<(skia_src_path)/core/SkCoreBlitters.h',
89 '<(skia_src_path)/core/SkCpu.cpp', 93 '<(skia_src_path)/core/SkCpu.cpp',
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 '<(skia_src_path)/pathops/SkPathOpsLine.h', 522 '<(skia_src_path)/pathops/SkPathOpsLine.h',
519 '<(skia_src_path)/pathops/SkPathOpsPoint.h', 523 '<(skia_src_path)/pathops/SkPathOpsPoint.h',
520 '<(skia_src_path)/pathops/SkPathOpsQuad.h', 524 '<(skia_src_path)/pathops/SkPathOpsQuad.h',
521 '<(skia_src_path)/pathops/SkPathOpsRect.h', 525 '<(skia_src_path)/pathops/SkPathOpsRect.h',
522 '<(skia_src_path)/pathops/SkPathOpsTSect.h', 526 '<(skia_src_path)/pathops/SkPathOpsTSect.h',
523 '<(skia_src_path)/pathops/SkPathOpsTypes.h', 527 '<(skia_src_path)/pathops/SkPathOpsTypes.h',
524 '<(skia_src_path)/pathops/SkPathWriter.h', 528 '<(skia_src_path)/pathops/SkPathWriter.h',
525 '<(skia_src_path)/pathops/SkReduceOrder.h', 529 '<(skia_src_path)/pathops/SkReduceOrder.h',
526 ], 530 ],
527 } 531 }
OLDNEW
« no previous file with comments | « gm/labpcsdemo.cpp ('k') | resources/icc_profiles/srgb_lab_pcs.icc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698