diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-15 18:03:14 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-15 18:03:14 +0000 |
commit | 0faa0a2b09b6e540c87c605f3f9f63a8b085dd4f (patch) | |
tree | 0eca4ae896a75bf98ab9c3740be90d35500a5c48 /content/content_resources.grd | |
parent | 562016345565bf1fa5c44bd8dc002c01e8310e46 (diff) | |
download | chromium_src-0faa0a2b09b6e540c87c605f3f9f63a8b085dd4f.zip chromium_src-0faa0a2b09b6e540c87c605f3f9f63a8b085dd4f.tar.gz chromium_src-0faa0a2b09b6e540c87c605f3f9f63a8b085dd4f.tar.bz2 |
Add a content_resources target which currently includes the sandbox definitions on mac
BUG=90443
TEST=none
Review URL: http://codereview.chromium.org/8533023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_resources.grd')
-rw-r--r-- | content/content_resources.grd | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/content/content_resources.grd b/content/content_resources.grd new file mode 100644 index 0000000..cbfebb1 --- /dev/null +++ b/content/content_resources.grd @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +This file contains resources required by each embedder of content. + +Currently, the resources are only included on Linux and Mac. If you add +resources that need to be available on windows as well, you'll need to add +content_resources.rc file to the respective targets. +--> + +<grit latest_public_release="0" current_release="1"> + <outputs> + <output filename="grit/content_resources.h" type="rc_header"> + <emit emit_type='prepend'></emit> + </output> + <output filename="content_resources.pak" type="data_package" /> + <output filename="content_resources.rc" type="rc_all" /> + </outputs> + <translations /> + <release seq="1"> + <includes> + <if expr="is_macosx"> + <include name="IDR_GPU_SANDBOX_DEFINITION" file="browser/gpu.sb" type="BINDATA" /> + <include name="IDR_WORKER_SANDBOX_DEFINITION" file="browser/worker.sb" type="BINDATA" /> + <include name="IDR_COMMON_SANDBOX_DEFINITION" file="common/common.sb" type="BINDATA" /> + <include name="IDR_PPAPI_SANDBOX_DEFINITION" file="ppapi_plugin/ppapi.sb" type="BINDATA" /> + <include name="IDR_RENDERER_SANDBOX_DEFINITION" file="renderer/renderer.sb" type="BINDATA" /> + <include name="IDR_UTILITY_SANDBOX_DEFINITION" file="utility/utility.sb" type="BINDATA" /> + </if> + </includes> + </release> +</grit> |