Index: Source/modules/modules_generated.gyp |
diff --git a/Source/modules/modules_generated.gyp b/Source/modules/modules_generated.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2b3f7774429449bad6147536d58dda2d8fbe554e |
--- /dev/null |
+++ b/Source/modules/modules_generated.gyp |
@@ -0,0 +1,50 @@ |
+# Copyright 2014 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+{ |
+ 'includes': [ |
+ 'modules_generated.gypi', |
+ '../bindings/scripts/scripts.gypi', |
+ '../build/features.gypi', |
+ '../build/scripts/scripts.gypi', |
+ ], |
+ 'targets': [ |
+ { |
+ # GN version: //third_party/WebKit/Source/modules:make_modules_generated |
+ 'target_name': 'make_modules_generated', |
+ 'type': 'none', |
+ 'hard_dependency': 1, |
+ 'dependencies': [ |
+ #'generated_testing_idls', |
+ '../core/core_generated.gyp:core_event_interfaces', |
+ '../bindings/modules/generated.gyp:modules_event_generated', |
+ '../config.gyp:config', |
+ ], |
+ 'sources': [ |
+ # bison rule |
+ '../core/css/CSSGrammar.y', |
cmumford
2014/08/12 17:44:54
I don't believe that CSSGrammar.y is required here
jsbell
2014/08/12 18:46:12
Agreed, looks like the modules.gyp bison rules are
|
+ '../core/xml/XPathGrammar.y', |
+ ], |
+ 'actions': [ |
+ { |
+ 'action_name': 'IndexedDBNames', |
+ 'inputs': [ |
+ '<@(make_names_files)', |
+ 'indexeddb/IndexedDBNames.in', |
+ ], |
+ 'outputs': [ |
+ '<(blink_modules_output_dir)/IndexedDBNames.cpp', |
+ '<(blink_modules_output_dir)/IndexedDBNames.h', |
+ ], |
+ 'action': [ |
+ 'python', |
+ '../build/scripts/make_names.py', |
+ 'indexeddb/IndexedDBNames.in', |
+ '--output_dir', |
+ '<(blink_modules_output_dir)', |
+ ], |
+ }, |
+ ], |
+ }, |
+ ], |
+} |