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

Side by Side Diff: Source/core/core.gypi

Issue 45553002: Move remaining classes in graphics/transforms to platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix merge problem Created 7 years, 1 month 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 { 1 {
2 'variables': { 2 'variables': {
3 'core_idl_files': [ 3 'core_idl_files': [
4 'css/CSS.idl', 4 'css/CSS.idl',
5 'css/CSSCharsetRule.idl', 5 'css/CSSCharsetRule.idl',
6 'css/CSSFontFaceLoadEvent.idl', 6 'css/CSSFontFaceLoadEvent.idl',
7 'css/CSSFontFaceRule.idl', 7 'css/CSSFontFaceRule.idl',
8 'css/CSSHostRule.idl', 8 'css/CSSHostRule.idl',
9 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
10 'css/CSSKeyframeRule.idl', 10 'css/CSSKeyframeRule.idl',
(...skipping 2938 matching lines...) Expand 10 before | Expand all | Expand 10 after
2949 'platform/graphics/skia/NativeImageSkia.h', 2949 'platform/graphics/skia/NativeImageSkia.h',
2950 'platform/graphics/skia/OpaqueRegionSkia.cpp', 2950 'platform/graphics/skia/OpaqueRegionSkia.cpp',
2951 'platform/graphics/skia/OpaqueRegionSkia.h', 2951 'platform/graphics/skia/OpaqueRegionSkia.h',
2952 'platform/graphics/skia/SimpleFontDataSkia.cpp', 2952 'platform/graphics/skia/SimpleFontDataSkia.cpp',
2953 'platform/graphics/skia/SkiaFontWin.cpp', 2953 'platform/graphics/skia/SkiaFontWin.cpp',
2954 'platform/graphics/skia/SkiaFontWin.h', 2954 'platform/graphics/skia/SkiaFontWin.h',
2955 'platform/graphics/skia/SkiaSharedBufferStream.cpp', 2955 'platform/graphics/skia/SkiaSharedBufferStream.cpp',
2956 'platform/graphics/skia/SkiaSharedBufferStream.h', 2956 'platform/graphics/skia/SkiaSharedBufferStream.h',
2957 'platform/graphics/skia/SkiaUtils.cpp', 2957 'platform/graphics/skia/SkiaUtils.cpp',
2958 'platform/graphics/skia/SkiaUtils.h', 2958 'platform/graphics/skia/SkiaUtils.h',
2959 'platform/graphics/transforms/IdentityTransformOperation.h',
2960 'platform/graphics/transforms/InterpolatedTransformOperation.h',
2961 'platform/graphics/transforms/InterpolatedTransformOperation.cpp',
2962 'platform/graphics/transforms/Matrix3DTransformOperation.cpp',
2963 'platform/graphics/transforms/Matrix3DTransformOperation.h',
2964 'platform/graphics/transforms/MatrixTransformOperation.cpp',
2965 'platform/graphics/transforms/MatrixTransformOperation.h',
2966 'platform/graphics/transforms/PerspectiveTransformOperation.cpp',
2967 'platform/graphics/transforms/PerspectiveTransformOperation.h',
2968 'platform/graphics/transforms/RotateTransformOperation.cpp',
2969 'platform/graphics/transforms/RotateTransformOperation.h',
2970 'platform/graphics/transforms/ScaleTransformOperation.cpp',
2971 'platform/graphics/transforms/ScaleTransformOperation.h',
2972 'platform/graphics/transforms/SkewTransformOperation.cpp',
2973 'platform/graphics/transforms/SkewTransformOperation.h',
2974 'platform/graphics/transforms/TransformOperations.cpp',
2975 'platform/graphics/transforms/TranslateTransformOperation.cpp',
2976 'platform/graphics/transforms/TranslateTransformOperation.h',
2977 'platform/graphics/win/FontCustomPlatformDataWin.cpp', 2959 'platform/graphics/win/FontCustomPlatformDataWin.cpp',
2978 'platform/image-decoders/ImageDecoder.cpp', 2960 'platform/image-decoders/ImageDecoder.cpp',
2979 'platform/image-decoders/ImageDecoder.h', 2961 'platform/image-decoders/ImageDecoder.h',
2980 'platform/image-decoders/ImageFrame.cpp', 2962 'platform/image-decoders/ImageFrame.cpp',
2981 'platform/image-decoders/bmp/BMPImageDecoder.cpp', 2963 'platform/image-decoders/bmp/BMPImageDecoder.cpp',
2982 'platform/image-decoders/bmp/BMPImageDecoder.h', 2964 'platform/image-decoders/bmp/BMPImageDecoder.h',
2983 'platform/image-decoders/bmp/BMPImageReader.cpp', 2965 'platform/image-decoders/bmp/BMPImageReader.cpp',
2984 'platform/image-decoders/bmp/BMPImageReader.h', 2966 'platform/image-decoders/bmp/BMPImageReader.h',
2985 'platform/image-decoders/gif/GIFImageDecoder.cpp', 2967 'platform/image-decoders/gif/GIFImageDecoder.cpp',
2986 'platform/image-decoders/gif/GIFImageDecoder.h', 2968 'platform/image-decoders/gif/GIFImageDecoder.h',
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
3626 'bison_exe': 'bison', 3608 'bison_exe': 'bison',
3627 # We specify a preprocess so it happens locally and won't get 3609 # We specify a preprocess so it happens locally and won't get
3628 # distributed to goma. 3610 # distributed to goma.
3629 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3611 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3630 # use /usr/bin/clang once we require Xcode 4.x. 3612 # use /usr/bin/clang once we require Xcode 4.x.
3631 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3613 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3632 }], 3614 }],
3633 ], 3615 ],
3634 } 3616 }
3635 } 3617 }
OLDNEW
« no previous file with comments | « Source/core/animation/AnimatableValueTestHelperTest.cpp ('k') | Source/core/css/resolver/TransformBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698