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

Unified Diff: third_party/WebKit/Source/bindings/scripts/global_objects.gypi

Issue 2319623003: Reorganize Blink IDL build, delete obsolete GYP files. (Closed)
Patch Set: Created 4 years, 3 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: third_party/WebKit/Source/bindings/scripts/global_objects.gypi
diff --git a/third_party/WebKit/Source/bindings/scripts/global_objects.gypi b/third_party/WebKit/Source/bindings/scripts/global_objects.gypi
deleted file mode 100644
index fa812ee0a8bb82f5493f7c65d8930d111d9d4ec2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/bindings/scripts/global_objects.gypi
+++ /dev/null
@@ -1,64 +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.
-#
-# This file is meant to be included into a target to provide an action
-# to compute global objects in a component.
-#
-# To use this, create a gyp target with the following form:
-# {
-# 'target_name': 'component_global_objects',
-# 'variables': {
-# 'idl_files': '<(list_of_idl_files)',
-# 'input_files': ['<(some_dir)/GlobalObjectBaseComponent.pickle'],
-# 'output_file': '<(some_dir)/GlobalObjectsComponent.pickle',
-# },
-# 'includes': ['path/to/this/gypi/file'],
-# },
-#
-# Required variables:
-# idl_files - List of .idl files that will be searched in.
-# This should *only* contain main IDL files, excluding dependencies and
-# testing, which should not define global objects.
-# output_file - Pickle file of output.
-#
-# Optional variables:
-# input_files - List of input pickle files of global objects in base
-# components. In this case make sure to include a dependencies section
-# in the target to ensure this is generated.
-#
-# Spec: http://heycam.github.io/webidl/#Global
-# Design document: http://www.chromium.org/developers/design-documents/idl-build
-
-{
- 'type': 'none',
- 'actions': [{
- 'action_name': 'compute_<(_target_name)',
- 'message': 'Computing global objects for <(_target_name)',
- 'variables': {
- 'input_files%': [],
- 'idl_files_list': '<|(<(_target_name)_idl_files_list.tmp <@(idl_files))',
- },
- 'includes': ['scripts.gypi'],
- 'inputs': [
- '<(bindings_scripts_dir)/compute_global_objects.py',
- '<(bindings_scripts_dir)/utilities.py',
- '<(idl_files_list)',
- '<@(idl_files)',
- ],
- 'outputs': [
- '<(output_file)',
- ],
- 'action': [
- 'python',
- '<(bindings_scripts_dir)/compute_global_objects.py',
- '--idl-files-list',
- '<(idl_files_list)',
- '--write-file-only-if-changed',
- '<(write_file_only_if_changed)',
- '--',
- '<@(input_files)',
- '<(output_file)',
- ],
- }],
-}

Powered by Google App Engine
This is Rietveld 408576698