diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-18 22:02:50 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-18 22:02:50 +0000 |
commit | b90c75afa26473fae4e6c2333beb241b7da27203 (patch) | |
tree | bc4f2383ca103e063dcf1d724c85172ca25e3b5d /tools/gn/secondary | |
parent | ebad924529462695b44cb0090d568a808ce83365 (diff) | |
download | chromium_src-b90c75afa26473fae4e6c2333beb241b7da27203.zip chromium_src-b90c75afa26473fae4e6c2333beb241b7da27203.tar.gz chromium_src-b90c75afa26473fae4e6c2333beb241b7da27203.tar.bz2 |
Update GN copy file rule.
This merges the syntax of the script and copy file rules and adds lots of documentation.
In doing this I realized that the template handling and escaping was bad in the script rules, so I did a bunch of work and added much better tests.
BUG=288991
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/23536068
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223954 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/gn/secondary')
-rw-r--r-- | tools/gn/secondary/third_party/icu/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gn/secondary/third_party/icu/BUILD.gn b/tools/gn/secondary/third_party/icu/BUILD.gn index 1db4c2e..4c76ffe 100644 --- a/tools/gn/secondary/third_party/icu/BUILD.gn +++ b/tools/gn/secondary/third_party/icu/BUILD.gn @@ -404,7 +404,7 @@ if (is_win) { copy("icudata") { external = true sources = [ "windows/icudt.dll" ] - destdir = root_output_dir + outputs = [ "$root_output_dir/icudt.dll" ] } } else { static_library("icudata") { |