summaryrefslogtreecommitdiffstats
path: root/extensions/shell/app_shell_resources.gyp
diff options
context:
space:
mode:
authorjamescook <jamescook@chromium.org>2014-10-20 07:35:11 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-20 14:35:30 +0000
commit62117928b7e16e4b1080e802f26ca43f8ce1e997 (patch)
treefbedb04f41badd87a7fac3e14715e58a5c6bccdf /extensions/shell/app_shell_resources.gyp
parent34cb061236f5c334606379297c2dfdfded0a490e (diff)
downloadchromium_src-62117928b7e16e4b1080e802f26ca43f8ce1e997.zip
chromium_src-62117928b7e16e4b1080e802f26ca43f8ce1e997.tar.gz
chromium_src-62117928b7e16e4b1080e802f26ca43f8ce1e997.tar.bz2
Add support for app_shell-only extension APIs
Also add a stub for an identity-related API as an example. BUG=424651 TEST=app_shell_unittests Review URL: https://codereview.chromium.org/660333003 Cr-Commit-Position: refs/heads/master@{#300265}
Diffstat (limited to 'extensions/shell/app_shell_resources.gyp')
-rw-r--r--extensions/shell/app_shell_resources.gyp25
1 files changed, 25 insertions, 0 deletions
diff --git a/extensions/shell/app_shell_resources.gyp b/extensions/shell/app_shell_resources.gyp
new file mode 100644
index 0000000..162bd89
--- /dev/null
+++ b/extensions/shell/app_shell_resources.gyp
@@ -0,0 +1,25 @@
+# Copyright 2014 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': 'app_shell_resources',
+ 'type': 'none',
+ 'variables': {
+ 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/extensions/shell',
+ },
+ 'actions': [
+ {
+ 'action_name': 'generate_app_shell_resources',
+ 'variables': {
+ 'grit_grd_file': 'app_shell_resources.grd',
+ },
+ 'includes': [ '../../build/grit_action.gypi' ],
+ },
+ ],
+ 'includes': [ '../../build/grit_target.gypi' ],
+ },
+ ] # targets
+}