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

Side by Side Diff: remoting/app_remoting_webapp.gyp

Issue 895523004: [Chromoting] Add ability to enable/disable GDrive support per-app in gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../remoting/remoting_locales.gypi', 7 '../remoting/remoting_locales.gypi',
8 '../remoting/app_remoting_webapp_build.gypi', 8 '../remoting/app_remoting_webapp_build.gypi',
9 ], 9 ],
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 '<@(remoting_webapp_js_proto_files)', 62 '<@(remoting_webapp_js_proto_files)',
63 ], 63 ],
64 }, 64 },
65 ], # actions 65 ], # actions
66 }], 66 }],
67 ], # conditions 67 ], # conditions
68 }, 68 },
69 69
70 'targets': [ 70 'targets': [
71 { 71 {
72 # Sample app with no features enabled.
Jamie 2015/02/02 22:57:47 Is there any value in having this sample app? I th
garykac 2015/02/03 01:50:21 Done.
72 'target_name': 'ar_sample_app', 73 'target_name': 'ar_sample_app',
73 'app_id': 'ljacajndfccfgnfohlgkdphmbnpkjflk', 74 'app_id': 'ljacajndfccfgnfohlgkdphmbnpkjflk',
74 'app_name': 'App Remoting Client', 75 'app_name': 'App Remoting Client',
75 'app_description': 'App Remoting client', 76 'app_description': 'App Remoting client',
77 'app_features': [],
78 },
79 {
80 # Sample app with GDrive enabled.
81 'target_name': 'ar_sample_app_gdrive',
82 'app_id': 'ljacajndfccfgnfohlgkdphmbnpkjflk',
83 'app_name': 'App Remoting Client (GDrive)',
84 'app_description': 'App Remoting client (GDrive)',
85 'app_features': ['gdrive'],
76 }, 86 },
77 ], # end of targets 87 ], # end of targets
78 } 88 }
OLDNEW
« no previous file with comments | « no previous file | remoting/app_remoting_webapp_build.gypi » ('j') | remoting/webapp/base/js/app_features.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698