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

Unified Diff: Source/bindings/core_bindings_generated.gyp

Issue 298893006: Split modules-dependent Event code in core. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | Source/bindings/scripts/generate_event_interfaces.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core_bindings_generated.gyp
diff --git a/Source/bindings/core_bindings_generated.gyp b/Source/bindings/core_bindings_generated.gyp
deleted file mode 100644
index 73494dd1fb5e395e2d1f9b4f0811257a627723c7..0000000000000000000000000000000000000000
--- a/Source/bindings/core_bindings_generated.gyp
+++ /dev/null
@@ -1,53 +0,0 @@
-# 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.
-
-# Generate EventInterfaces.in, used by core/ but depends on modules/,
-# hence placed in bindings/ to avoid direct core/ -> modules/ dependency.
-
-{
- 'includes': [
- 'bindings.gypi',
- '../core/core.gypi',
- '../modules/modules.gypi',
- ],
-
- 'targets': [
- {
- 'target_name': 'core_bindings_generated',
- 'type': 'none',
- 'actions': [
- {
- 'action_name': 'event_interfaces',
- 'variables': {
- 'event_idl_files': [
- '<@(core_event_idl_files)',
- '<@(modules_event_idl_files)',
- ],
- 'event_idl_files_list':
- '<|(event_idl_files_list.tmp <@(event_idl_files))',
- },
- 'inputs': [
- '../bindings/scripts/generate_event_interfaces.py',
- '../bindings/scripts/utilities.py',
- '<(event_idl_files_list)',
- '<@(event_idl_files)',
- ],
- 'outputs': [
- '<(blink_output_dir)/EventInterfaces.in',
- ],
- 'action': [
- 'python',
- '../bindings/scripts/generate_event_interfaces.py',
- '--event-idl-files-list',
- '<(event_idl_files_list)',
- '--event-interfaces-file',
- '<(blink_output_dir)/EventInterfaces.in',
- '--write-file-only-if-changed',
- '<(write_file_only_if_changed)',
- ],
- },
- ],
- },
- ], # targets
-}
« no previous file with comments | « no previous file | Source/bindings/scripts/generate_event_interfaces.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698