summaryrefslogtreecommitdiffstats
path: root/chrome/chrome_browser_chromeos.gypi
diff options
context:
space:
mode:
authordkrahn@google.com <dkrahn@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 01:15:10 +0000
committerdkrahn@google.com <dkrahn@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 01:15:10 +0000
commit93f2a1249b570769e8656eaf697ace16707b2ee4 (patch)
tree33dcbddea59c8519f371bd627e244d07c6da1ee0 /chrome/chrome_browser_chromeos.gypi
parent275aea7ea0da2d53698cdea143efa19d424e586e (diff)
downloadchromium_src-93f2a1249b570769e8656eaf697ace16707b2ee4.zip
chromium_src-93f2a1249b570769e8656eaf697ace16707b2ee4.tar.gz
chromium_src-93f2a1249b570769e8656eaf697ace16707b2ee4.tar.bz2
Finished implementing AttestationPolicyObserver.
Created a payload protobuf to track whether a key's certificate has already been uploaded. BUG=chromium:219959 TEST=unit Review URL: https://chromiumcodereview.appspot.com/14220003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_browser_chromeos.gypi')
-rw-r--r--chrome/chrome_browser_chromeos.gypi14
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome/chrome_browser_chromeos.gypi b/chrome/chrome_browser_chromeos.gypi
index bb4cdc9..f1bc1bb 100644
--- a/chrome/chrome_browser_chromeos.gypi
+++ b/chrome/chrome_browser_chromeos.gypi
@@ -23,6 +23,7 @@
'dependencies': [
# TODO(tbarzic): Cleanup this list.
'app/policy/cloud_policy_codegen.gyp:policy',
+ 'attestation_proto',
'browser_extensions',
'browser/performance_monitor/performance_monitor.gyp:performance_monitor',
'cert_logger_proto',
@@ -896,5 +897,18 @@
},
'includes': [ '../build/protoc.gypi' ]
},
+ {
+ # Protobuf compiler / generator for attestation protocol buffers.
+ 'target_name': 'attestation_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'browser/chromeos/attestation/attestation_key_payload.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'browser/chromeos/attestation',
+ 'proto_out_dir': 'chrome/browser/chromeos/attestation',
+ },
+ 'includes': [ '../build/protoc.gypi' ]
+ },
],
}