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

Unified Diff: Source/core/core_generated.gyp

Issue 171383002: A thread-safe Media Query Parser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Generate strings with make_names Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/core_generated.gyp
diff --git a/Source/core/core_generated.gyp b/Source/core/core_generated.gyp
index 8811344f19857d9ad04a1da2226b8b9722313d79..80b8ba3a8ea48b73049330bc4bad2c7544a9c87c 100644
--- a/Source/core/core_generated.gyp
+++ b/Source/core/core_generated.gyp
@@ -180,6 +180,58 @@
],
},
{
+ 'action_name': 'MediaFeatureNames',
+ 'variables': {
+ 'in_files': [
+ 'css/MediaFeatureNames.in',
+ ],
+ },
+ 'inputs': [
+ '<@(scripts_for_in_files)',
+ '../build/scripts/make_media_feature_names.py',
+ '<@(in_files)'
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.cpp',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.h',
+ ],
+ 'action': [
+ 'python',
+ '../build/scripts/make_media_feature_names.py',
+ '<@(in_files)',
+ '--output_dir',
+ '<(SHARED_INTERMEDIATE_DIR)/blink',
+ '--gperf', '<(gperf_exe)',
abarth-chromium 2014/03/03 19:06:19 Why do you need gperf? That doesn't make much sen
+ '--defines', '<(feature_defines)',
+ ],
+ },
+ {
+ 'action_name': 'MediaTypeNames',
+ 'variables': {
+ 'in_files': [
+ 'css/MediaTypeNames.in',
+ ],
+ },
+ 'inputs': [
+ '<@(scripts_for_in_files)',
+ '../build/scripts/make_names.py',
+ '<@(in_files)'
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.cpp',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.h',
+ ],
+ 'action': [
+ 'python',
+ '../build/scripts/make_names.py',
+ '<@(in_files)',
+ '--output_dir',
+ '<(SHARED_INTERMEDIATE_DIR)/blink',
+ '--gperf', '<(gperf_exe)',
+ '--defines', '<(feature_defines)',
+ ],
+ },
+ {
'action_name': 'StylePropertyShorthand',
'inputs': [
'<@(scripts_for_in_files)',

Powered by Google App Engine
This is Rietveld 408576698