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

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

Issue 171383002: A thread-safe Media Query Parser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Moar rebase Created 6 years, 9 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 { 1 {
2 'variables': { 2 'variables': {
3 # Files for which bindings (.cpp and .h files) will be generated 3 # Files for which bindings (.cpp and .h files) will be generated
4 'core_idl_files': [ 4 'core_idl_files': [
5 'animation/Animation.idl', 5 'animation/Animation.idl',
6 'animation/Player.idl', 6 'animation/Player.idl',
7 'animation/TimedItem.idl', 7 'animation/TimedItem.idl',
8 'animation/Timeline.idl', 8 'animation/Timeline.idl',
9 'animation/Timing.idl', 9 'animation/Timing.idl',
10 'clipboard/DataTransfer.idl', 10 'clipboard/DataTransfer.idl',
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 'css/CSSMarkup.h', 713 'css/CSSMarkup.h',
714 'css/CSSMediaRule.cpp', 714 'css/CSSMediaRule.cpp',
715 'css/CSSMediaRule.h', 715 'css/CSSMediaRule.h',
716 'css/CSSOMUtils.cpp', 716 'css/CSSOMUtils.cpp',
717 'css/CSSOMUtils.h', 717 'css/CSSOMUtils.h',
718 'css/CSSPageRule.cpp', 718 'css/CSSPageRule.cpp',
719 'css/CSSPageRule.h', 719 'css/CSSPageRule.h',
720 'css/parser/BisonCSSParser.h', 720 'css/parser/BisonCSSParser.h',
721 'css/parser/CSSPropertyParser.cpp', 721 'css/parser/CSSPropertyParser.cpp',
722 'css/parser/CSSPropertyParser.h', 722 'css/parser/CSSPropertyParser.h',
723 'css/parser/MediaQueryTokenizer.cpp',
724 'css/parser/MediaQueryParser.cpp',
725 'css/parser/MediaQueryInputStream.cpp',
726 'css/parser/MediaQueryToken.cpp',
723 'css/CSSParserMode.cpp', 727 'css/CSSParserMode.cpp',
724 'css/CSSParserMode.h', 728 'css/CSSParserMode.h',
725 'css/CSSParserValues.cpp', 729 'css/CSSParserValues.cpp',
726 'css/CSSPrimitiveValue.cpp', 730 'css/CSSPrimitiveValue.cpp',
727 'css/CSSPrimitiveValueMappings.h', 731 'css/CSSPrimitiveValueMappings.h',
728 'css/CSSProperty.cpp', 732 'css/CSSProperty.cpp',
729 'css/CSSPropertySourceData.cpp', 733 'css/CSSPropertySourceData.cpp',
730 'css/CSSReflectValue.cpp', 734 'css/CSSReflectValue.cpp',
731 'css/CSSRule.cpp', 735 'css/CSSRule.cpp',
732 'css/CSSRule.h', 736 'css/CSSRule.h',
(...skipping 2532 matching lines...) Expand 10 before | Expand all | Expand 10 after
3265 'animation/CompositorAnimationsTimingFunctionReverserTest.cpp', 3269 'animation/CompositorAnimationsTimingFunctionReverserTest.cpp',
3266 'animation/DocumentTimelineTest.cpp', 3270 'animation/DocumentTimelineTest.cpp',
3267 'animation/InterpolableValueTest.cpp', 3271 'animation/InterpolableValueTest.cpp',
3268 'animation/InterpolationEffectTest.cpp', 3272 'animation/InterpolationEffectTest.cpp',
3269 'animation/KeyframeEffectModelTest.cpp', 3273 'animation/KeyframeEffectModelTest.cpp',
3270 'animation/PlayerTest.cpp', 3274 'animation/PlayerTest.cpp',
3271 'animation/TimedItemCalculationsTest.cpp', 3275 'animation/TimedItemCalculationsTest.cpp',
3272 'animation/TimedItemTest.cpp', 3276 'animation/TimedItemTest.cpp',
3273 'animation/TimingInputTest.cpp', 3277 'animation/TimingInputTest.cpp',
3274 'css/AffectedByFocusTest.cpp', 3278 'css/AffectedByFocusTest.cpp',
3279 'css/parser/MediaQueryTokenizerTest.cpp',
3275 'css/CSSCalculationValueTest.cpp', 3280 'css/CSSCalculationValueTest.cpp',
3276 'css/CSSFontFaceTest.cpp', 3281 'css/CSSFontFaceTest.cpp',
3277 'css/CSSTestHelper.cpp', 3282 'css/CSSTestHelper.cpp',
3278 'css/CSSTestHelper.h', 3283 'css/CSSTestHelper.h',
3279 'css/CSSValueTestHelper.h', 3284 'css/CSSValueTestHelper.h',
3280 'css/CSSParserValuesTest.cpp', 3285 'css/CSSParserValuesTest.cpp',
3281 'css/CSSSelectorTest.cpp', 3286 'css/CSSSelectorTest.cpp',
3282 'css/CSSValueTestHelper.h', 3287 'css/CSSValueTestHelper.h',
3283 'css/DragUpdateTest.cpp', 3288 'css/DragUpdateTest.cpp',
3284 'css/HoverUpdateTest.cpp', 3289 'css/HoverUpdateTest.cpp',
(...skipping 21 matching lines...) Expand all
3306 'html/track/vtt/BufferedLineReaderTest.cpp', 3311 'html/track/vtt/BufferedLineReaderTest.cpp',
3307 'html/track/vtt/VTTScannerTest.cpp', 3312 'html/track/vtt/VTTScannerTest.cpp',
3308 'rendering/RenderOverflowTest.cpp', 3313 'rendering/RenderOverflowTest.cpp',
3309 'rendering/shapes/BoxShapeTest.cpp', 3314 'rendering/shapes/BoxShapeTest.cpp',
3310 'testing/UnitTestHelpers.cpp', 3315 'testing/UnitTestHelpers.cpp',
3311 'testing/UnitTestHelpers.h', 3316 'testing/UnitTestHelpers.h',
3312 'xml/parser/SharedBufferReaderTest.cpp', 3317 'xml/parser/SharedBufferReaderTest.cpp',
3313 ], 3318 ],
3314 } 3319 }
3315 } 3320 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/CSSPrimitiveValue.h » ('j') | Source/core/css/CSSPrimitiveValue.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698