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

Side by Side Diff: components/policy.gypi

Issue 116273002: Added support for signed policy blobs on desktop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix for ios. Created 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # Included to get 'mac_bundle_id' and other variables. 7 # Included to get 'mac_bundle_id' and other variables.
8 '../build/chrome_settings.gypi', 8 '../build/chrome_settings.gypi',
9 ], 9 ],
10 'variables': { 10 'variables': {
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'POLICY_COMPONENT_IMPLEMENTATION', 192 'POLICY_COMPONENT_IMPLEMENTATION',
193 ], 193 ],
194 }, 194 },
195 { 195 {
196 'target_name': 'cloud_policy_proto', 196 'target_name': 'cloud_policy_proto',
197 'type': 'static_library', 197 'type': 'static_library',
198 'sources': [ 198 'sources': [
199 'policy/proto/chrome_extension_policy.proto', 199 'policy/proto/chrome_extension_policy.proto',
200 'policy/proto/device_management_backend.proto', 200 'policy/proto/device_management_backend.proto',
201 'policy/proto/device_management_local.proto', 201 'policy/proto/device_management_local.proto',
202 'policy/proto/policy_signing_key.proto',
202 ], 203 ],
203 'variables': { 204 'variables': {
204 'proto_in_dir': 'policy/proto', 205 'proto_in_dir': 'policy/proto',
205 'proto_out_dir': 'policy/proto', 206 'proto_out_dir': 'policy/proto',
206 }, 207 },
207 'includes': [ 208 'includes': [
208 '../build/protoc.gypi', 209 '../build/protoc.gypi',
209 ], 210 ],
210 'conditions': [ 211 'conditions': [
211 ['OS=="android" or OS=="ios"', { 212 ['OS=="android" or OS=="ios"', {
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 'message': 419 'message':
419 'Copy the Localizable.strings files to the manifest bundle', 420 'Copy the Localizable.strings files to the manifest bundle',
420 'process_outputs_as_mac_bundle_resources': 1, 421 'process_outputs_as_mac_bundle_resources': 1,
421 }, 422 },
422 ], 423 ],
423 }, 424 },
424 ], 425 ],
425 }], 426 }],
426 ], 427 ],
427 } 428 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698