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

Side by Side Diff: chromeos/chromeos.gyp

Issue 11932004: Implemented attestation message flow for Chrome OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'chromeos_tools.gypi' 10 'chromeos_tools.gypi'
(...skipping 11 matching lines...) Expand all
22 '../third_party/libxml/libxml.gyp:libxml', 22 '../third_party/libxml/libxml.gyp:libxml',
23 'power_manager_proto', 23 'power_manager_proto',
24 'power_state_control_proto', 24 'power_state_control_proto',
25 'power_supply_properties_proto', 25 'power_supply_properties_proto',
26 'video_activity_update_proto', 26 'video_activity_update_proto',
27 ], 27 ],
28 'defines': [ 28 'defines': [
29 'CHROMEOS_IMPLEMENTATION', 29 'CHROMEOS_IMPLEMENTATION',
30 ], 30 ],
31 'sources': [ 31 'sources': [
32 'attestation/attestation_flow.cc',
33 'attestation/attestation_flow.h',
32 'chromeos_export.h', 34 'chromeos_export.h',
33 'chromeos_switches.cc', 35 'chromeos_switches.cc',
34 'chromeos_switches.h', 36 'chromeos_switches.h',
35 'cryptohome/async_method_caller.cc', 37 'cryptohome/async_method_caller.cc',
36 'cryptohome/async_method_caller.h', 38 'cryptohome/async_method_caller.h',
37 'dbus/blocking_method_caller.cc', 39 'dbus/blocking_method_caller.cc',
38 'dbus/blocking_method_caller.h', 40 'dbus/blocking_method_caller.h',
39 'dbus/bluetooth_adapter_client.cc', 41 'dbus/bluetooth_adapter_client.cc',
40 'dbus/bluetooth_adapter_client.h', 42 'dbus/bluetooth_adapter_client.h',
41 'dbus/bluetooth_agent_service_provider.cc', 43 'dbus/bluetooth_agent_service_provider.cc',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 { 199 {
198 # This target contains mocks that can be used to write unit tests. 200 # This target contains mocks that can be used to write unit tests.
199 'target_name': 'chromeos_test_support', 201 'target_name': 'chromeos_test_support',
200 'type': 'static_library', 202 'type': 'static_library',
201 'dependencies': [ 203 'dependencies': [
202 '../build/linux/system.gyp:dbus', 204 '../build/linux/system.gyp:dbus',
203 '../testing/gmock.gyp:gmock', 205 '../testing/gmock.gyp:gmock',
204 'chromeos', 206 'chromeos',
205 ], 207 ],
206 'sources': [ 208 'sources': [
209 'attestation/mock_attestation_flow.cc',
210 'attestation/mock_attestation_flow.h',
207 'chromeos_test_utils.cc', 211 'chromeos_test_utils.cc',
208 'chromeos_test_utils.h', 212 'chromeos_test_utils.h',
209 'cryptohome/mock_async_method_caller.cc', 213 'cryptohome/mock_async_method_caller.cc',
210 'cryptohome/mock_async_method_caller.h', 214 'cryptohome/mock_async_method_caller.h',
211 'dbus/mock_bluetooth_adapter_client.cc', 215 'dbus/mock_bluetooth_adapter_client.cc',
212 'dbus/mock_bluetooth_adapter_client.h', 216 'dbus/mock_bluetooth_adapter_client.h',
213 'dbus/mock_bluetooth_device_client.cc', 217 'dbus/mock_bluetooth_device_client.cc',
214 'dbus/mock_bluetooth_device_client.h', 218 'dbus/mock_bluetooth_device_client.h',
215 'dbus/mock_bluetooth_input_client.cc', 219 'dbus/mock_bluetooth_input_client.cc',
216 'dbus/mock_bluetooth_input_client.h', 220 'dbus/mock_bluetooth_input_client.h',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 '../build/linux/system.gyp:dbus', 307 '../build/linux/system.gyp:dbus',
304 '../build/linux/system.gyp:ssl', 308 '../build/linux/system.gyp:ssl',
305 '../crypto/crypto.gyp:crypto', 309 '../crypto/crypto.gyp:crypto',
306 '../dbus/dbus.gyp:dbus_test_support', 310 '../dbus/dbus.gyp:dbus_test_support',
307 '../net/net.gyp:net', 311 '../net/net.gyp:net',
308 '../testing/gmock.gyp:gmock', 312 '../testing/gmock.gyp:gmock',
309 '../testing/gtest.gyp:gtest', 313 '../testing/gtest.gyp:gtest',
310 'chromeos_test_support', 314 'chromeos_test_support',
311 ], 315 ],
312 'sources': [ 316 'sources': [
317 'attestation/attestation_flow_unittest.cc',
313 'display/output_configurator_unittest.cc', 318 'display/output_configurator_unittest.cc',
314 'dbus/blocking_method_caller_unittest.cc', 319 'dbus/blocking_method_caller_unittest.cc',
315 'dbus/shill_client_unittest_base.cc', 320 'dbus/shill_client_unittest_base.cc',
316 'dbus/shill_client_unittest_base.h', 321 'dbus/shill_client_unittest_base.h',
317 'dbus/shill_device_client_unittest.cc', 322 'dbus/shill_device_client_unittest.cc',
318 'dbus/shill_ipconfig_client_unittest.cc', 323 'dbus/shill_ipconfig_client_unittest.cc',
319 'dbus/shill_manager_client_unittest.cc', 324 'dbus/shill_manager_client_unittest.cc',
320 'dbus/shill_profile_client_unittest.cc', 325 'dbus/shill_profile_client_unittest.cc',
321 'dbus/shill_service_client_unittest.cc', 326 'dbus/shill_service_client_unittest.cc',
322 'dbus/gsm_sms_client_unittest.cc', 327 'dbus/gsm_sms_client_unittest.cc',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 '../third_party/cros_system_api/dbus/video_activity_update.proto', 421 '../third_party/cros_system_api/dbus/video_activity_update.proto',
417 ], 422 ],
418 'variables': { 423 'variables': {
419 'proto_in_dir': '../third_party/cros_system_api/dbus/', 424 'proto_in_dir': '../third_party/cros_system_api/dbus/',
420 'proto_out_dir': 'chromeos/dbus', 425 'proto_out_dir': 'chromeos/dbus',
421 }, 426 },
422 'includes': ['../build/protoc.gypi'], 427 'includes': ['../build/protoc.gypi'],
423 }, 428 },
424 ], 429 ],
425 } 430 }
OLDNEW
« no previous file with comments | « chromeos/attestation/mock_attestation_flow.cc ('k') | chromeos/cryptohome/mock_async_method_caller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698