diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 21:38:44 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-07 21:38:44 +0000 |
commit | be27510df9717e67bc016c650081e7d0d23c10b8 (patch) | |
tree | 1ad7f3864cb4a064a50834968a4496ae269b2d3a /extensions/extensions_resources.gyp | |
parent | 9f061177a330b895a14f2153178fd16ad2ed1b94 (diff) | |
download | chromium_src-be27510df9717e67bc016c650081e7d0d23c10b8.zip chromium_src-be27510df9717e67bc016c650081e7d0d23c10b8.tar.gz chromium_src-be27510df9717e67bc016c650081e7d0d23c10b8.tar.bz2 |
Update extensions_resources to use grit_target.gypi.
This is just a small cleanup while I'm here and for being consistent
with other files of the same nature.
BUG=None
TEST=extensions_unittests
R=yoz@chromium.org
Review URL: https://codereview.chromium.org/270243002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268962 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/extensions_resources.gyp')
-rw-r--r-- | extensions/extensions_resources.gyp | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/extensions/extensions_resources.gyp b/extensions/extensions_resources.gyp index dcbf26f..856def8 100644 --- a/extensions/extensions_resources.gyp +++ b/extensions/extensions_resources.gyp @@ -3,15 +3,14 @@ # found in the LICENSE file. { - 'variables': { - 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/extensions', - }, 'targets': [ { 'target_name': 'extensions_resources', 'type': 'none', + 'variables': { + 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/extensions', + }, 'actions': [ - # Data resources. { 'action_name': 'extensions_resources', 'variables': { @@ -20,11 +19,7 @@ 'includes': [ '../build/grit_action.gypi' ], }, ], - 'direct_dependent_settings': { - 'include_dirs': [ - '<(SHARED_INTERMEDIATE_DIR)/extensions', - ], - }, + 'includes': [ '../build/grit_target.gypi' ], 'hard_dependency': 1, } ] |