summaryrefslogtreecommitdiffstats
path: root/chromeos/ime/BUILD.gn
diff options
context:
space:
mode:
authormukai <mukai@chromium.org>2014-10-09 12:05:17 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-09 19:05:31 +0000
commit6ba7355aaae75a21af22663f26543186bd61f4cb (patch)
tree8bb552d9dcf70ac8103e3a4a3e7498f339fec432 /chromeos/ime/BUILD.gn
parentd346fbf66936bcc5a1d2b602caf5cfb388f59bf2 (diff)
downloadchromium_src-6ba7355aaae75a21af22663f26543186bd61f4cb.zip
chromium_src-6ba7355aaae75a21af22663f26543186bd61f4cb.tar.gz
chromium_src-6ba7355aaae75a21af22663f26543186bd61f4cb.tar.bz2
Add //chromeos GN target.
This CL depends on https://codereview.chromium.org/637643003/ BUG=None R=cmasone@chromium.org, oshima@chromium.org TBR=armansito@chromium.org, sky@chromium.org, mkwst@chromium.org, brettw@chromium.org TEST=chromeos_unittests / ash_shell works Review URL: https://codereview.chromium.org/637093002 Cr-Commit-Position: refs/heads/master@{#298951}
Diffstat (limited to 'chromeos/ime/BUILD.gn')
-rw-r--r--chromeos/ime/BUILD.gn15
1 files changed, 15 insertions, 0 deletions
diff --git a/chromeos/ime/BUILD.gn b/chromeos/ime/BUILD.gn
new file mode 100644
index 0000000..46918ad
--- /dev/null
+++ b/chromeos/ime/BUILD.gn
@@ -0,0 +1,15 @@
+# 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.
+
+action("gencode") {
+ script = "gen_input_methods.py"
+ sources = [ "//chromeos/ime/input_methods.txt" ]
+ outputs = [
+ "$target_gen_dir/input_methods.h"
+ ]
+ args = [
+ rebase_path("//chromeos/ime/input_methods.txt"),
+ rebase_path("$target_gen_dir/input_methods.h"),
+ ]
+}