diff options
author | Michal Klocek <michal.klocek@qt.io> | 2016-11-10 14:06:09 +0100 |
---|---|---|
committer | Michal Klocek <michal.klocek@qt.io> | 2016-11-16 13:45:02 +0000 |
commit | 777da810b25f517d54dc4b7771e42a4ea38c355b (patch) | |
tree | 675d9f4b67f68441adffb9a01e3075d8d12c0fb2 /chromium/chromeos/ime/BUILD.gn | |
parent | 2eb1e44ebb98208ec9bd0acb0c410e95e8f253b9 (diff) | |
download | qtwebengine-chromium-777da810b25f517d54dc4b7771e42a4ea38c355b.tar.gz |
Add all gn, gni, typemap, mojom files
These file are required to gn be able to parse
source tree.
Change-Id: I9cb4a0b3897c1e99dd6e39832a8c55764fb6e1c6
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/chromeos/ime/BUILD.gn')
-rw-r--r-- | chromium/chromeos/ime/BUILD.gn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chromium/chromeos/ime/BUILD.gn b/chromium/chromeos/ime/BUILD.gn new file mode 100644 index 00000000000..c471ca415fb --- /dev/null +++ b/chromium/chromeos/ime/BUILD.gn @@ -0,0 +1,17 @@ +# 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"), + ] +} |