diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-29 20:57:34 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-29 20:57:34 +0000 |
commit | 29b25d090dda547a1b4340af1ad2a84cc498ab70 (patch) | |
tree | 054230b7c8af03f95c3e77befc38aff6ba3dd67d /ui/ui_resources.gypi | |
parent | 1e932118a2ad13c144f958e46899b535c7bc0bdd (diff) | |
download | chromium_src-29b25d090dda547a1b4340af1ad2a84cc498ab70.zip chromium_src-29b25d090dda547a1b4340af1ad2a84cc498ab70.tar.gz chromium_src-29b25d090dda547a1b4340af1ad2a84cc498ab70.tar.bz2 |
Move app/resources/* to ui/resources/ directory.
BUG=72317
TEST=None
R=rsesek@chromium.org
Review URL: http://codereview.chromium.org/7253057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91010 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/ui_resources.gypi')
-rw-r--r-- | ui/ui_resources.gypi | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ui/ui_resources.gypi b/ui/ui_resources.gypi new file mode 100644 index 0000000..3ee5ab6 --- /dev/null +++ b/ui/ui_resources.gypi @@ -0,0 +1,31 @@ +# Copyright (c) 2011 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. + +{ + 'targets': [ + { + 'target_name': 'ui_resources', + 'type': 'none', + 'variables': { + 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources', + }, + 'actions': [ + { + 'action_name': 'ui_resources', + 'variables': { + 'grit_grd_file': 'resources/ui_resources.grd', + }, + 'includes': [ '../build/grit_action.gypi' ], + }, + ], + 'includes': [ '../build/grit_target.gypi' ], + }, + ], +} + +# Local Variables: +# tab-width:2 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=2 shiftwidth=2: |