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

Unified Diff: gin/fingerprint/fingerprint_v8_snapshot.gypi

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge 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
« no previous file with comments | « extensions/components/native_app_window.gypi ('k') | gin/gin.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/fingerprint/fingerprint_v8_snapshot.gypi
diff --git a/gin/fingerprint/fingerprint_v8_snapshot.gypi b/gin/fingerprint/fingerprint_v8_snapshot.gypi
deleted file mode 100644
index ede0de3ea5c1e1b33f492c31a8efc7c0bd9002af..0000000000000000000000000000000000000000
--- a/gin/fingerprint/fingerprint_v8_snapshot.gypi
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2015 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 a rule that
-# fingerprints the v8 snapshot and generates a .cc file which includes this
-# fingerprint.
-#
-# To use this, create a gyp target with the following form:
-# {
-# 'target_name': 'gin_v8_snapshot_fingerprint',
-# 'type': 'none',
-# 'variables': {
-# 'snapshot_file': 'snapshot blob file to be fingerprinted',
-# 'natives_file': 'natives blob file to be fingerprinted',
-# 'output_file': 'output .cc file to generate with fingerprints',
-# },
-# 'includes': [ '../gin/fingerprint/fingerprint_v8_snapshot.gypi' ],
-# },
-#
-
-{
- 'conditions': [
- ['v8_use_external_startup_data==1', {
- 'actions': [
- {
- 'action_name': 'Generate V8 snapshot fingerprint',
- 'message': 'Generating V8 snapshot fingerprint',
- 'inputs': [
- '<(DEPTH)/gin/fingerprint/fingerprint_v8_snapshot.py',
- '<(snapshot_file)',
- '<(natives_file)',
- ],
- 'outputs': [
- '<(output_file)',
- ],
- 'action': [
- 'python', '<(DEPTH)/gin/fingerprint/fingerprint_v8_snapshot.py',
- '--snapshot_file=<(snapshot_file)',
- '--natives_file=<(natives_file)',
- '--output_file=<(output_file)',
- ],
- }
- ],
- }],
- ],
-}
« no previous file with comments | « extensions/components/native_app_window.gypi ('k') | gin/gin.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698