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

Unified Diff: Source/build/convert_file_to_header_with_character_array.gni

Issue 402033002: Migrate all usages of xxd.py to blink_resources.grd and remove xxd.py - Part 3 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing! Created 6 years, 5 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 | « Source/build/ConvertFileToHeaderWithCharacterArray.gypi ('k') | Source/build/scripts/xxd.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/convert_file_to_header_with_character_array.gni
diff --git a/Source/build/convert_file_to_header_with_character_array.gni b/Source/build/convert_file_to_header_with_character_array.gni
deleted file mode 100644
index 7edaf3d67bb9ebe8ebe3287009b3a44bd451ec04..0000000000000000000000000000000000000000
--- a/Source/build/convert_file_to_header_with_character_array.gni
+++ /dev/null
@@ -1,28 +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.
-
-# To use this:
-# convert_file_to_header_with_character_array("mytarget") {
-# input_file_path = "myfile.js"
-# output_file_path = "$root_gen_dir/blink/myfile.h"
-# character_array_name = "myfile_js"
-# }
-template("convert_file_to_header_with_character_array") {
- assert(defined(invoker.input_file_path), "Need input_file_path.")
- assert(defined(invoker.output_file_path), "Need output_file_path.")
- assert(defined(invoker.character_array_name), "Need character_array_name.")
-
- action(target_name) {
- script = "//third_party/WebKit/Source/build/scripts/xxd.py"
-
- inputs = [ invoker.input_file_path ]
- outputs = [ invoker.output_file_path ]
-
- args = [
- invoker.character_array_name,
- rebase_path(invoker.input_file_path, root_build_dir),
- rebase_path(invoker.output_file_path, root_build_dir),
- ]
- }
-}
« no previous file with comments | « Source/build/ConvertFileToHeaderWithCharacterArray.gypi ('k') | Source/build/scripts/xxd.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698