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

Side by Side Diff: chromeos/chromeos.gyp

Issue 2343983004: Add PPDProvider barebones implementation and associated cache skeleton. (Closed)
Patch Set: Remove extra includes 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 unified diff | Download patch
« no previous file with comments | « no previous file | chromeos/printing/ppd_cache.h » ('j') | chromeos/printing/ppd_cache.h » ('J')
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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 'network/portal_detector/network_portal_detector_strategy.cc', 336 'network/portal_detector/network_portal_detector_strategy.cc',
337 'network/portal_detector/network_portal_detector_strategy.h', 337 'network/portal_detector/network_portal_detector_strategy.h',
338 'network/portal_detector/network_portal_detector_stub.cc', 338 'network/portal_detector/network_portal_detector_stub.cc',
339 'network/portal_detector/network_portal_detector_stub.h', 339 'network/portal_detector/network_portal_detector_stub.h',
340 'network/prohibited_technologies_handler.cc', 340 'network/prohibited_technologies_handler.cc',
341 'network/prohibited_technologies_handler.h', 341 'network/prohibited_technologies_handler.h',
342 'network/shill_property_handler.cc', 342 'network/shill_property_handler.cc',
343 'network/shill_property_handler.h', 343 'network/shill_property_handler.h',
344 'network/shill_property_util.cc', 344 'network/shill_property_util.cc',
345 'network/shill_property_util.h', 345 'network/shill_property_util.h',
346 'printing/ppd_cache.cc',
347 'printing/ppd_cache.h',
348 'printing/ppd_provider.cc',
349 'printing/ppd_provider.h',
346 'printing/printer_configuration.cc', 350 'printing/printer_configuration.cc',
347 'printing/printer_configuration.h', 351 'printing/printer_configuration.h',
348 'printing/printer_translator.h', 352 'printing/printer_translator.h',
349 'printing/printer_translator.cc', 353 'printing/printer_translator.cc',
350 'process_proxy/process_output_watcher.cc', 354 'process_proxy/process_output_watcher.cc',
351 'process_proxy/process_output_watcher.h', 355 'process_proxy/process_output_watcher.h',
352 'process_proxy/process_proxy.cc', 356 'process_proxy/process_proxy.cc',
353 'process_proxy/process_proxy.h', 357 'process_proxy/process_proxy.h',
354 'process_proxy/process_proxy_registry.cc', 358 'process_proxy/process_proxy_registry.cc',
355 'process_proxy/process_proxy_registry.h', 359 'process_proxy/process_proxy_registry.h',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 'network/network_ui_data_unittest.cc', 452 'network/network_ui_data_unittest.cc',
449 'network/network_util_unittest.cc', 453 'network/network_util_unittest.cc',
450 'network/onc/onc_certificate_importer_impl_unittest.cc', 454 'network/onc/onc_certificate_importer_impl_unittest.cc',
451 'network/onc/onc_merger_unittest.cc', 455 'network/onc/onc_merger_unittest.cc',
452 'network/onc/onc_normalizer_unittest.cc', 456 'network/onc/onc_normalizer_unittest.cc',
453 'network/onc/onc_translator_unittest.cc', 457 'network/onc/onc_translator_unittest.cc',
454 'network/onc/onc_utils_unittest.cc', 458 'network/onc/onc_utils_unittest.cc',
455 'network/onc/onc_validator_unittest.cc', 459 'network/onc/onc_validator_unittest.cc',
456 'network/prohibited_technologies_handler_unittest.cc', 460 'network/prohibited_technologies_handler_unittest.cc',
457 'network/shill_property_handler_unittest.cc', 461 'network/shill_property_handler_unittest.cc',
462 'printing/ppd_provider_unittest.cc',
458 'printing/printer_translator_unittest.cc', 463 'printing/printer_translator_unittest.cc',
459 'process_proxy/process_output_watcher_unittest.cc', 464 'process_proxy/process_output_watcher_unittest.cc',
460 'process_proxy/process_proxy_unittest.cc', 465 'process_proxy/process_proxy_unittest.cc',
461 'settings/timezone_settings_unittest.cc', 466 'settings/timezone_settings_unittest.cc',
462 'system/name_value_pairs_parser_unittest.cc', 467 'system/name_value_pairs_parser_unittest.cc',
463 'system/version_loader_unittest.cc', 468 'system/version_loader_unittest.cc',
464 'timezone/timezone_unittest.cc', 469 'timezone/timezone_unittest.cc',
465 'tpm/tpm_token_info_getter_unittest.cc', 470 'tpm/tpm_token_info_getter_unittest.cc',
466 ], 471 ],
467 'use_binder%': 0, 472 'use_binder%': 0,
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 '../build/isolate.gypi', 712 '../build/isolate.gypi',
708 ], 713 ],
709 'sources': [ 714 'sources': [
710 'chromeos_unittests.isolate', 715 'chromeos_unittests.isolate',
711 ], 716 ],
712 }, 717 },
713 ], 718 ],
714 }], 719 }],
715 ], 720 ],
716 } 721 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/printing/ppd_cache.h » ('j') | chromeos/printing/ppd_cache.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698