7d8013f306
SkTDStackNester is a class used by PdfViewer to assist in saving and restoring the PDF state. Clean up and test this class. Add some documentation. Add FIXME's where I have questions to resolve. Fix a bug where fNestingLevel was not initialized. Remove a commented out line of code copied over from SkTDStack. Rename SkTDStackNester::nests() to nestingLevel() and make it const. Remove unnecessary predeclaration and friend declaration. Remove index() (both const and non-const versions). They were unused, return something that may not be expected (index from the top, rather than from the bottom), and don't work to get any elements in earlier Recs once the first one is full. Report a warning if the nesting level goes above the maximum level, or if we attempt to bring it below zero. Prevent fNestingLevel from dropping below zero. Add kUnusedObject_SkPdfIssue, and use it where appropriate. Depends on https://codereview.chromium.org/64093009/ R=mtklein@google.com Review URL: https://codereview.chromium.org/68843006 git-svn-id: http://skia.googlecode.com/svn/trunk@12328 2bbb7eff-a529-9590-31e7-b0007b416f81
99 lines
2.6 KiB
Python
99 lines
2.6 KiB
Python
# GYP file to build experimental directory.
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'experimental',
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'../include/config',
|
|
'../include/core',
|
|
],
|
|
'sources': [
|
|
'../experimental/SkSetPoly3To3.cpp',
|
|
'../experimental/SkSetPoly3To3_A.cpp',
|
|
'../experimental/SkSetPoly3To3_D.cpp',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../experimental',
|
|
],
|
|
},
|
|
},
|
|
{
|
|
'target_name': 'SkiaExamples',
|
|
'type': 'executable',
|
|
'mac_bundle' : 1,
|
|
'include_dirs' : [
|
|
'../tools/flags',
|
|
],
|
|
'includes': [],
|
|
'sources': [
|
|
'../experimental/SkiaExamples/SkExample.h',
|
|
'../experimental/SkiaExamples/SkExample.cpp',
|
|
'../experimental/SkiaExamples/HelloSkiaExample.cpp',
|
|
],
|
|
'dependencies': [
|
|
'skia_lib.gyp:skia_lib',
|
|
'views.gyp:views',
|
|
'xml.gyp:xml',
|
|
'flags.gyp:flags'
|
|
],
|
|
'conditions' : [
|
|
[ 'skia_gpu == 1', {
|
|
'include_dirs' : [
|
|
'../src/gpu', #gl/GrGLUtil.h
|
|
]
|
|
}],
|
|
[ 'skia_os == "win"', {
|
|
'sources' : [
|
|
'../src/views/win/SkOSWindow_Win.cpp',
|
|
'../src/views/win/skia_win.cpp',
|
|
],
|
|
},
|
|
],
|
|
|
|
[ 'skia_os == "mac"', {
|
|
'sources': [
|
|
|
|
# SkiaExamples specific files
|
|
'../experimental/SkiaExamples/SkiaExamples-Info.plist',
|
|
'../experimental/SkiaExamples/SkExampleNSView.h',
|
|
'../experimental/SkiaExamples/SkExampleNSView.mm',
|
|
|
|
# Mac files
|
|
'../src/views/mac/SampleAppDelegate.h',
|
|
'../src/views/mac/SampleAppDelegate.mm',
|
|
'../src/views/mac/SkEventNotifier.mm',
|
|
'../src/views/mac/skia_mac.mm',
|
|
'../src/views/mac/SkNSView.h',
|
|
'../src/views/mac/SkNSView.mm',
|
|
'../src/views/mac/SkOptionsTableView.h',
|
|
'../src/views/mac/SkOptionsTableView.mm',
|
|
'../src/views/mac/SkOSWindow_Mac.mm',
|
|
'../src/views/mac/SkTextFieldCell.h',
|
|
'../src/views/mac/SkTextFieldCell.m',
|
|
],
|
|
'include_dirs' : [
|
|
'../src/views/mac/'
|
|
],
|
|
'link_settings': {
|
|
},
|
|
'xcode_settings' : {
|
|
'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.plist',
|
|
},
|
|
'mac_bundle_resources' : [
|
|
'../experimental/SkiaExamples/SkiaExamples.xib'
|
|
],
|
|
}
|
|
],
|
|
],
|
|
}
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|