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

Unified Diff: chromeos/chromeos.gyp

Issue 2297193006: Do a better job at faking simple challenge signatures. (Closed)
Patch Set: Be a good modern C++ programmer and let go of const char*. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/chromeos.gyp
diff --git a/chromeos/chromeos.gyp b/chromeos/chromeos.gyp
index 207e2162faa3edfd967497cb50ae7055ee7fcd4a..150f5f81350ee314d1f739d0cec8c8a4e0d84570 100644
--- a/chromeos/chromeos.gyp
+++ b/chromeos/chromeos.gyp
@@ -409,6 +409,7 @@
'dbus/cras_audio_client_unittest.cc',
'dbus/cros_disks_client_unittest.cc',
'dbus/dbus_client_bundle_unittest.cc',
+ 'dbus/fake_cryptohome_client_unittest.cc',
'dbus/fake_easy_unlock_client_unittest.cc',
'dbus/fake_power_manager_client_unittest.cc',
'dbus/gsm_sms_client_unittest.cc',
@@ -495,6 +496,7 @@
'../third_party/libxml/libxml.gyp:libxml',
'../third_party/protobuf/protobuf.gyp:protobuf_lite',
'../url/url.gyp:url_lib',
+ 'attestation_proto',
'cryptohome_proto',
'power_manager_proto',
],
@@ -682,6 +684,20 @@
'includes': ['../build/protoc.gypi'],
},
{
+ # GN version: //chromeos:cryptohome_attestation
+ # Protobuf compiler/generator for attestation related protocol buffers.
+ 'target_name': 'attestation_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'dbus/proto/attestation.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'dbus/proto',
+ 'proto_out_dir': 'chromeos/cryptohome',
+ },
+ 'includes': ['../build/protoc.gypi'],
+ },
+ {
# GN version: //chromeos:cryptohome_signkey_proto
# Protobuf compiler/generator for cryptohome key signing protocol buffer.
'target_name': 'cryptohome_signkey_proto',

Powered by Google App Engine
This is Rietveld 408576698