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

Unified Diff: third_party/WebKit/Source/core/core_generated.gyp

Issue 1538663003: Add code generation for ExperimentalFeatures class from RuntimeEnabledFeatures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix broken GN build dependency Created 5 years 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: third_party/WebKit/Source/core/core_generated.gyp
diff --git a/third_party/WebKit/Source/core/core_generated.gyp b/third_party/WebKit/Source/core/core_generated.gyp
index ea2e60c5b8465668c85b993b1dfce6b158d33986..01712e3ba3aae41ea72718ab0be26a7ea6b41a1a 100644
--- a/third_party/WebKit/Source/core/core_generated.gyp
+++ b/third_party/WebKit/Source/core/core_generated.gyp
@@ -730,6 +730,27 @@
'<(blink_core_output_dir)',
],
},
+ {
+ 'action_name': 'ExperimentalFeatures',
+ 'inputs': [
+ '<@(scripts_for_in_files)',
+ '../build/scripts/make_experimental_features.py',
+ '../platform/RuntimeEnabledFeatures.in',
+ '../build/scripts/templates/ExperimentalFeatures.cpp.tmpl',
+ '../build/scripts/templates/ExperimentalFeatures.h.tmpl',
+ ],
+ 'outputs': [
+ '<(blink_core_output_dir)/experiments/ExperimentalFeatures.cpp',
+ '<(blink_core_output_dir)/experiments/ExperimentalFeatures.h',
+ ],
+ 'action': [
+ 'python',
+ '../build/scripts/make_experimental_features.py',
+ '../platform/RuntimeEnabledFeatures.in',
+ '--output_dir',
+ '<(blink_core_output_dir)/experiments',
+ ],
+ },
],
'rules': [
{

Powered by Google App Engine
This is Rietveld 408576698