Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: remoting/webapp/manifest.json.jinja2

Issue 343983003: Use PNaCl in V2 builds of the remoting webapp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} 2 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }}
3 "name": "__MSG_PRODUCT_NAME__", 3 "name": "__MSG_PRODUCT_NAME__",
4 "version": "{{ FULL_APP_VERSION }}", 4 "version": "{{ FULL_APP_VERSION }}",
5 "description": "__MSG_PRODUCT_DESCRIPTION__", 5 "description": "__MSG_PRODUCT_DESCRIPTION__",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "default_locale": "en", 7 "default_locale": "en",
8 "minimum_chrome_version": "32", 8 "minimum_chrome_version": "32",
9 "app": { 9 "app": {
10 {% if webapp_type == 'v1' %} 10 {% if webapp_type == 'v1' %}
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "permissions": [ 58 "permissions": [
59 "{{ OAUTH2_ACCOUNTS_HOST }}/*", 59 "{{ OAUTH2_ACCOUNTS_HOST }}/*",
60 "{{ OAUTH2_API_BASE_URL }}/*", 60 "{{ OAUTH2_API_BASE_URL }}/*",
61 "{{ DIRECTORY_API_BASE_URL }}/*", 61 "{{ DIRECTORY_API_BASE_URL }}/*",
62 "{{ TALK_GADGET_HOST }}/talkgadget/*", 62 "{{ TALK_GADGET_HOST }}/talkgadget/*",
63 "https://relay.google.com/*", 63 "https://relay.google.com/*",
64 "storage", 64 "storage",
65 "clipboardRead", 65 "clipboardRead",
66 "clipboardWrite", 66 "clipboardWrite",
67 "nativeMessaging" 67 "nativeMessaging"
68 {% if webapp_type != 'v1' %} 68 {% if webapp_type == 'v2' %}
69 , 69 ,
70 "fullscreen", 70 "fullscreen",
71 "identity", 71 "identity",
72 "contextMenus", 72 "contextMenus",
73 "overrideEscFullscreen" 73 "overrideEscFullscreen",
74 {% endif %} 74 {
75 {% if webapp_type == 'v2_pnacl' %}
76 ,{
77 "socket": [ 75 "socket": [
78 "tcp-connect", 76 "tcp-connect",
79 "tcp-listen", 77 "tcp-listen",
80 "udp-send-to", 78 "udp-send-to",
81 "udp-bind", 79 "udp-bind",
82 "udp-multicast-membership", 80 "udp-multicast-membership",
83 "resolve-host", 81 "resolve-host",
84 "network-state" 82 "network-state"
85 ] 83 ]
86 } 84 }
87 {% endif %} 85 {% endif %}
88 ] 86 ]
89 } 87 }
OLDNEW
« remoting/remoting_client.gypi ('K') | « remoting/webapp/client_plugin.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698