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

Side by Side Diff: chromeos/chromeos.gyp

Issue 2343983004: Add PPDProvider barebones implementation and associated cache skeleton. (Closed)
Patch Set: Initial PPDProvider/PPDCache implementation. Also, add associated unittests. This doesn't plumb th… Created 4 years, 1 month 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
« no previous file with comments | « no previous file | chromeos/printing/ppd_cache.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 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'chromeos_sources': [ 9 'chromeos_sources': [
10 'accelerometer/accelerometer_reader.cc', 10 'accelerometer/accelerometer_reader.cc',
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 'network/portal_detector/network_portal_detector_stub.cc', 340 'network/portal_detector/network_portal_detector_stub.cc',
341 'network/portal_detector/network_portal_detector_stub.h', 341 'network/portal_detector/network_portal_detector_stub.h',
342 'network/prohibited_technologies_handler.cc', 342 'network/prohibited_technologies_handler.cc',
343 'network/prohibited_technologies_handler.h', 343 'network/prohibited_technologies_handler.h',
344 'network/shill_property_handler.cc', 344 'network/shill_property_handler.cc',
345 'network/shill_property_handler.h', 345 'network/shill_property_handler.h',
346 'network/shill_property_util.cc', 346 'network/shill_property_util.cc',
347 'network/shill_property_util.h', 347 'network/shill_property_util.h',
348 'printing/fake_printer_discoverer.cc', 348 'printing/fake_printer_discoverer.cc',
349 'printing/fake_printer_discoverer.h', 349 'printing/fake_printer_discoverer.h',
350 'printing/ppd_cache.cc',
351 'printing/ppd_cache.h',
352 'printing/ppd_provider.cc',
353 'printing/ppd_provider.h',
350 'printing/printer_configuration.cc', 354 'printing/printer_configuration.cc',
351 'printing/printer_configuration.h', 355 'printing/printer_configuration.h',
352 'printing/printer_discoverer.h', 356 'printing/printer_discoverer.h',
353 'printing/printer_translator.cc', 357 'printing/printer_translator.cc',
354 'printing/printer_translator.h', 358 'printing/printer_translator.h',
355 'process_proxy/process_output_watcher.cc', 359 'process_proxy/process_output_watcher.cc',
356 'process_proxy/process_output_watcher.h', 360 'process_proxy/process_output_watcher.h',
357 'process_proxy/process_proxy.cc', 361 'process_proxy/process_proxy.cc',
358 'process_proxy/process_proxy.h', 362 'process_proxy/process_proxy.h',
359 'process_proxy/process_proxy_registry.cc', 363 'process_proxy/process_proxy_registry.cc',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 'network/network_ui_data_unittest.cc', 459 'network/network_ui_data_unittest.cc',
456 'network/network_util_unittest.cc', 460 'network/network_util_unittest.cc',
457 'network/onc/onc_certificate_importer_impl_unittest.cc', 461 'network/onc/onc_certificate_importer_impl_unittest.cc',
458 'network/onc/onc_merger_unittest.cc', 462 'network/onc/onc_merger_unittest.cc',
459 'network/onc/onc_normalizer_unittest.cc', 463 'network/onc/onc_normalizer_unittest.cc',
460 'network/onc/onc_translator_unittest.cc', 464 'network/onc/onc_translator_unittest.cc',
461 'network/onc/onc_utils_unittest.cc', 465 'network/onc/onc_utils_unittest.cc',
462 'network/onc/onc_validator_unittest.cc', 466 'network/onc/onc_validator_unittest.cc',
463 'network/prohibited_technologies_handler_unittest.cc', 467 'network/prohibited_technologies_handler_unittest.cc',
464 'network/shill_property_handler_unittest.cc', 468 'network/shill_property_handler_unittest.cc',
469 'printing/ppd_cache_unittest.cc',
470 'printing/ppd_provider_unittest.cc',
465 'printing/printer_translator_unittest.cc', 471 'printing/printer_translator_unittest.cc',
466 'process_proxy/process_output_watcher_unittest.cc', 472 'process_proxy/process_output_watcher_unittest.cc',
467 'process_proxy/process_proxy_unittest.cc', 473 'process_proxy/process_proxy_unittest.cc',
468 'settings/timezone_settings_unittest.cc', 474 'settings/timezone_settings_unittest.cc',
469 'system/name_value_pairs_parser_unittest.cc', 475 'system/name_value_pairs_parser_unittest.cc',
470 'system/version_loader_unittest.cc', 476 'system/version_loader_unittest.cc',
471 'timezone/timezone_unittest.cc', 477 'timezone/timezone_unittest.cc',
472 'tpm/tpm_token_info_getter_unittest.cc', 478 'tpm/tpm_token_info_getter_unittest.cc',
473 ], 479 ],
474 'use_binder%': 0, 480 'use_binder%': 0,
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 '../build/isolate.gypi', 735 '../build/isolate.gypi',
730 ], 736 ],
731 'sources': [ 737 'sources': [
732 'chromeos_unittests.isolate', 738 'chromeos_unittests.isolate',
733 ], 739 ],
734 }, 740 },
735 ], 741 ],
736 }], 742 }],
737 ], 743 ],
738 } 744 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/printing/ppd_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698