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

Unified Diff: source/test/depstest/icu-dependencies-mode.el

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 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/test/depstest/depstest.py ('k') | source/test/hdrtst/cxxfiles.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/test/depstest/icu-dependencies-mode.el
diff --git a/source/test/depstest/icu-dependencies-mode.el b/source/test/depstest/icu-dependencies-mode.el
new file mode 100644
index 0000000000000000000000000000000000000000..26e539241b72fb300d7ac20cf6da203844661f0f
--- /dev/null
+++ b/source/test/depstest/icu-dependencies-mode.el
@@ -0,0 +1,21 @@
+;; Copyright (c) 2014 IBM Corporation and others, all rights reserved
+;; Thx: http://www.ergoemacs.org/emacs/elisp_syntax_coloring.html
+;; Thx: http://repo.or.cz/w/emacs.git/blob/HEAD:/lisp/progmodes/sh-script.el
+;;
+;; load this with M-x eval-buffer
+;;
+;; TODO: .*
+
+(setq icuDepKeywords
+ '(("group:\\|system_symbols:\\|library:" . font-lock-function-name-face)
+ ("deps" . font-lock-constant-face)
+ ("#.*" . font-lock-comment-face)
+ ("[a-zA-Z0-9_]+\\.o" . font-lock-doc-face)
+ )
+)
+
+(define-derived-mode icu-dependencies-mode fundamental-mode
+ (setq font-lock-defaults '(icuDepKeywords))
+ (setq mode-name "icu dependencies.txt")
+ (setq comment-start "# ")
+)
« no previous file with comments | « source/test/depstest/depstest.py ('k') | source/test/hdrtst/cxxfiles.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698