OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 { | |
5 'includes': [ | |
6 'modules_generated.gypi', | |
7 '../bindings/scripts/scripts.gypi', | |
8 '../build/features.gypi', | |
9 '../build/scripts/scripts.gypi', | |
10 ], | |
11 'targets': [ | |
12 { | |
13 # GN version: //third_party/WebKit/Source/modules:make_modules_generated | |
14 'target_name': 'make_modules_generated', | |
15 'type': 'none', | |
16 'hard_dependency': 1, | |
17 'dependencies': [ | |
18 #'generated_testing_idls', | |
19 '../core/core_generated.gyp:core_event_interfaces', | |
20 '../bindings/modules/generated.gyp:modules_event_generated', | |
21 '../config.gyp:config', | |
22 ], | |
23 'sources': [ | |
24 # bison rule | |
25 '../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
| |
26 '../core/xml/XPathGrammar.y', | |
27 ], | |
28 'actions': [ | |
29 { | |
30 'action_name': 'IndexedDBNames', | |
31 'inputs': [ | |
32 '<@(make_names_files)', | |
33 'indexeddb/IndexedDBNames.in', | |
34 ], | |
35 'outputs': [ | |
36 '<(blink_modules_output_dir)/IndexedDBNames.cpp', | |
37 '<(blink_modules_output_dir)/IndexedDBNames.h', | |
38 ], | |
39 'action': [ | |
40 'python', | |
41 '../build/scripts/make_names.py', | |
42 'indexeddb/IndexedDBNames.in', | |
43 '--output_dir', | |
44 '<(blink_modules_output_dir)', | |
45 ], | |
46 }, | |
47 ], | |
48 }, | |
49 ], | |
50 } | |
OLD | NEW |