diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 17:51:26 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 17:51:26 +0000 |
commit | 13d9917fcb79bcd93bb8149470bb44ca362583f0 (patch) | |
tree | a99a9564dfbcdb0b7bf3b96bb073c227a2cae309 /build | |
parent | 264868d242fdea2a44aca0516688dc0b8588ae20 (diff) | |
download | chromium_src-13d9917fcb79bcd93bb8149470bb44ca362583f0.zip chromium_src-13d9917fcb79bcd93bb8149470bb44ca362583f0.tar.gz chromium_src-13d9917fcb79bcd93bb8149470bb44ca362583f0.tar.bz2 |
Parameterize the ui_resources location.
This is a temporary file that will facilitate landing a two-sided patch in Blink/Chromium that changes the location of the generated ui resources directory.
R=viettrungluu@chromium.org
Review URL: https://codereview.chromium.org/380283002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282371 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/ui_resources_location.gypi | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/build/ui_resources_location.gypi b/build/ui_resources_location.gypi new file mode 100644 index 0000000..700638c --- /dev/null +++ b/build/ui_resources_location.gypi @@ -0,0 +1,11 @@ +{ + 'variables': { + # The generated paths gen/ui/ui_resources and gen/ui/ui_strings are + # being moved to gen/ui/resources and gen/ui/strings, respectively. But + # Blink relies on the location of ui_resources to link its unit tests. + # Two facilitate the two-sided patch, this variable indicates the + # one currently in use. + # TODO(brettw) remove this when the move is complete. + 'ui_resources_gen_subdir': 'ui_resources', + }, +} |