diff options
author | spang <spang@chromium.org> | 2016-02-09 18:19:52 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-10 02:21:25 +0000 |
commit | 0a40d5fc6506cde613b27dd96e3cbdae965caa38 (patch) | |
tree | 8482fce058fafe7b34f9d6d8b0d5e3c2711266ea | |
parent | 6289f67ff10d256e717a26b64d2199add9f3c2c8 (diff) | |
download | chromium_src-0a40d5fc6506cde613b27dd96e3cbdae965caa38.zip chromium_src-0a40d5fc6506cde613b27dd96e3cbdae965caa38.tar.gz chromium_src-0a40d5fc6506cde613b27dd96e3cbdae965caa38.tar.bz2 |
Fix liblouis GN build
This fixes the following error in the CrOS gn ozone build
(target_os="chromeos" use_ozone=true):
[2/2854] ACTION //third_party/liblouis:liblouis_tables(//build/toolchain/cros:clang_target)
FAILED: python ../third_party/liblouis/copy_tables.py -D ../third_party/liblouis -D ../third_party/liblouis/src/tables -d resources/chromeos/chromevox/braille/tables -e ../../../../../../third_party/liblouis/cvox-common.cti --depfile gen/third_party/liblouis/liblouis_tables.d ../third_party/liblouis/tables.json
liblouis_list_tables: File not found: ../../../../../../third_party/liblouis/cvox-common.cti
Review URL: https://codereview.chromium.org/1682833002
Cr-Commit-Position: refs/heads/master@{#374577}
-rw-r--r-- | third_party/liblouis/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/liblouis/BUILD.gn b/third_party/liblouis/BUILD.gn index 75018ce..02de24d 100644 --- a/third_party/liblouis/BUILD.gn +++ b/third_party/liblouis/BUILD.gn @@ -49,7 +49,7 @@ if (current_toolchain == default_toolchain) { "-d", rebase_path("$dest_dir/tables", root_build_dir), "-e", - rebase_path("cvox-common.cti", root_build_dir), + "cvox-common.cti", "--depfile", rebase_path(depfile, root_build_dir), ] + rebase_path(sources, root_build_dir) |