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

Side by Side Diff: chromeos/chromeos.gyp

Issue 22327005: Automatically resolve ClientCertificatePatterns. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed yet another issue with CertLoader. Created 7 years, 4 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
« no previous file with comments | « chromeos/cert_loader.cc ('k') | chromeos/network/client_cert_resolver.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_memory.gypi', 10 'chromeos_memory.gypi',
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'ime/input_method_property.cc', 210 'ime/input_method_property.cc',
211 'ime/input_method_property.h', 211 'ime/input_method_property.h',
212 'ime/input_method_whitelist.cc', 212 'ime/input_method_whitelist.cc',
213 'ime/input_method_whitelist.h', 213 'ime/input_method_whitelist.h',
214 'ime/xkeyboard.cc', 214 'ime/xkeyboard.cc',
215 'ime/xkeyboard.h', 215 'ime/xkeyboard.h',
216 'login/login_state.cc', 216 'login/login_state.cc',
217 'login/login_state.h', 217 'login/login_state.h',
218 'network/certificate_pattern.cc', 218 'network/certificate_pattern.cc',
219 'network/certificate_pattern.h', 219 'network/certificate_pattern.h',
220 'network/client_cert_resolver.cc',
221 'network/client_cert_resolver.h',
220 'network/client_cert_util.cc', 222 'network/client_cert_util.cc',
221 'network/client_cert_util.h', 223 'network/client_cert_util.h',
222 'network/cros_network_functions.cc', 224 'network/cros_network_functions.cc',
223 'network/cros_network_functions.h', 225 'network/cros_network_functions.h',
224 'network/device_state.cc', 226 'network/device_state.cc',
225 'network/device_state.h', 227 'network/device_state.h',
226 'network/favorite_state.cc', 228 'network/favorite_state.cc',
227 'network/favorite_state.h', 229 'network/favorite_state.h',
228 'network/geolocation_handler.cc', 230 'network/geolocation_handler.cc',
229 'network/geolocation_handler.h', 231 'network/geolocation_handler.h',
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 'disks/disk_mount_manager_unittest.cc', 492 'disks/disk_mount_manager_unittest.cc',
491 'display/output_configurator_unittest.cc', 493 'display/output_configurator_unittest.cc',
492 'display/output_util_unittest.cc', 494 'display/output_util_unittest.cc',
493 'ime/component_extension_ime_manager_unittest.cc', 495 'ime/component_extension_ime_manager_unittest.cc',
494 'ime/extension_ime_util_unittest.cc', 496 'ime/extension_ime_util_unittest.cc',
495 'ime/input_method_manager.h', 497 'ime/input_method_manager.h',
496 'ime/input_method_property_unittest.cc', 498 'ime/input_method_property_unittest.cc',
497 'ime/input_method_whitelist_unittest.cc', 499 'ime/input_method_whitelist_unittest.cc',
498 'ime/xkeyboard_unittest.cc', 500 'ime/xkeyboard_unittest.cc',
499 'login/login_state_unittest.cc', 501 'login/login_state_unittest.cc',
502 'network/client_cert_resolver_unittest.cc',
500 'network/cros_network_functions_unittest.cc', 503 'network/cros_network_functions_unittest.cc',
501 'network/geolocation_handler_unittest.cc', 504 'network/geolocation_handler_unittest.cc',
502 'network/managed_network_configuration_handler_unittest.cc', 505 'network/managed_network_configuration_handler_unittest.cc',
503 'network/network_cert_migrator_unittest.cc', 506 'network/network_cert_migrator_unittest.cc',
504 'network/network_change_notifier_chromeos_unittest.cc', 507 'network/network_change_notifier_chromeos_unittest.cc',
505 'network/network_configuration_handler_unittest.cc', 508 'network/network_configuration_handler_unittest.cc',
506 'network/network_connection_handler_unittest.cc', 509 'network/network_connection_handler_unittest.cc',
507 'network/network_device_handler_unittest.cc', 510 'network/network_device_handler_unittest.cc',
508 'network/network_event_log_unittest.cc', 511 'network/network_event_log_unittest.cc',
509 'network/network_profile_handler_stub.h', 512 'network/network_profile_handler_stub.h',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 '../third_party/cros_system_api/dbus/power_manager/suspend.proto', 550 '../third_party/cros_system_api/dbus/power_manager/suspend.proto',
548 ], 551 ],
549 'variables': { 552 'variables': {
550 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager', 553 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager',
551 'proto_out_dir': 'chromeos/dbus/power_manager', 554 'proto_out_dir': 'chromeos/dbus/power_manager',
552 }, 555 },
553 'includes': ['../build/protoc.gypi'], 556 'includes': ['../build/protoc.gypi'],
554 }, 557 },
555 ], 558 ],
556 } 559 }
OLDNEW
« no previous file with comments | « chromeos/cert_loader.cc ('k') | chromeos/network/client_cert_resolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698