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

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, 11 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 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'chromeos', 11 'target_name': 'chromeos',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../build/linux/system.gyp:dbus', 15 '../build/linux/system.gyp:dbus',
16 '../build/linux/system.gyp:ssl', 16 '../build/linux/system.gyp:ssl',
17 '../dbus/dbus.gyp:dbus', 17 '../dbus/dbus.gyp:dbus',
18 '../net/net.gyp:net', 18 '../net/net.gyp:net',
19 '../third_party/libxml/libxml.gyp:libxml', 19 '../third_party/libxml/libxml.gyp:libxml',
20 'power_manager_proto', 20 'power_manager_proto',
21 'power_state_control_proto', 21 'power_state_control_proto',
22 'power_supply_properties_proto', 22 'power_supply_properties_proto',
23 'video_activity_update_proto', 23 'video_activity_update_proto',
24 ], 24 ],
25 'defines': [ 25 'defines': [
26 'CHROMEOS_IMPLEMENTATION', 26 'CHROMEOS_IMPLEMENTATION',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'attestation/attestation_flow.cc',
30 'attestation/attestation_flow.h',
29 'chromeos_export.h', 31 'chromeos_export.h',
30 'chromeos_switches.cc', 32 'chromeos_switches.cc',
31 'chromeos_switches.h', 33 'chromeos_switches.h',
32 'cryptohome/async_method_caller.cc', 34 'cryptohome/async_method_caller.cc',
33 'cryptohome/async_method_caller.h', 35 'cryptohome/async_method_caller.h',
34 'dbus/blocking_method_caller.cc', 36 'dbus/blocking_method_caller.cc',
35 'dbus/blocking_method_caller.h', 37 'dbus/blocking_method_caller.h',
36 'dbus/bluetooth_adapter_client.cc', 38 'dbus/bluetooth_adapter_client.cc',
37 'dbus/bluetooth_adapter_client.h', 39 'dbus/bluetooth_adapter_client.h',
38 'dbus/bluetooth_agent_service_provider.cc', 40 'dbus/bluetooth_agent_service_provider.cc',
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 { 197 {
196 # This target contains mocks that can be used to write unit tests. 198 # This target contains mocks that can be used to write unit tests.
197 'target_name': 'chromeos_test_support', 199 'target_name': 'chromeos_test_support',
198 'type': 'static_library', 200 'type': 'static_library',
199 'dependencies': [ 201 'dependencies': [
200 '../build/linux/system.gyp:dbus', 202 '../build/linux/system.gyp:dbus',
201 '../testing/gmock.gyp:gmock', 203 '../testing/gmock.gyp:gmock',
202 'chromeos', 204 'chromeos',
203 ], 205 ],
204 'sources': [ 206 'sources': [
207 'attestation/mock_attestation_flow.cc',
208 'attestation/mock_attestation_flow.h',
205 'chromeos_test_utils.cc', 209 'chromeos_test_utils.cc',
206 'chromeos_test_utils.h', 210 'chromeos_test_utils.h',
207 'cryptohome/mock_async_method_caller.cc', 211 'cryptohome/mock_async_method_caller.cc',
208 'cryptohome/mock_async_method_caller.h', 212 'cryptohome/mock_async_method_caller.h',
209 'dbus/mock_bluetooth_adapter_client.cc', 213 'dbus/mock_bluetooth_adapter_client.cc',
210 'dbus/mock_bluetooth_adapter_client.h', 214 'dbus/mock_bluetooth_adapter_client.h',
211 'dbus/mock_bluetooth_device_client.cc', 215 'dbus/mock_bluetooth_device_client.cc',
212 'dbus/mock_bluetooth_device_client.h', 216 'dbus/mock_bluetooth_device_client.h',
213 'dbus/mock_bluetooth_input_client.cc', 217 'dbus/mock_bluetooth_input_client.cc',
214 'dbus/mock_bluetooth_input_client.h', 218 'dbus/mock_bluetooth_input_client.h',
(...skipping 88 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

Powered by Google App Engine
This is Rietveld 408576698