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

Unified Diff: third_party/polymer/vulcanized/vulcanize.py

Issue 236733003: Remove the need for <polymer-selector> in the PDF plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « third_party/polymer/vulcanized/polymer-elements.in.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/polymer/vulcanized/vulcanize.py
diff --git a/third_party/polymer/vulcanized/vulcanize.py b/third_party/polymer/vulcanized/vulcanize.py
deleted file mode 100755
index 08aacb2f431e9e09e5a34ac2fd4454e9cfadfaf6..0000000000000000000000000000000000000000
--- a/third_party/polymer/vulcanized/vulcanize.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/python2.6
-# Copyright (c) 2014 The Native Client Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import subprocess
-
-# This script vulcanizes all parts of the polymer library that are included in
-# polymer-elements.in.html. This is required because the polymer library is not
-# CSP compliant and Chrome extensions that use polymer have CSP enforced.
-# The vulcanize tool cannot currently be added to the Chrome build which is why
-# this must be run manually when polymer is revved. This script should be re-run
-# whenever we want polymer is updated.
-#
-# See https://code.google.com/p/chromium/issues/detail?id=359333 for more
-# details.
-#
-# Once this script has been run, the entire polymer library will be inside of
-# polymer-elements.html and polymer-elements.js.
-#
-# TODO(raymes): This is ugly. Remove this as soon as we can fix
-# crbug.com/359333.
-
-POLYMER_ELEMENTS_INPUT = "polymer-elements.in.html"
-POLYMER_ELEMENTS_OUTPUT = "polymer-elements.html"
-
-subprocess.call(["vulcanize", "--csp", POLYMER_ELEMENTS_INPUT,
- "-o", POLYMER_ELEMENTS_OUTPUT]);
« no previous file with comments | « third_party/polymer/vulcanized/polymer-elements.in.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698