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

Side by Side Diff: chromeos/chromeos.gyp

Issue 2207053002: Revert of Define printer configuration objects for Chrome OS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « chromeos/BUILD.gn ('k') | chromeos/printing/OWNERS » ('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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 'network/portal_detector/network_portal_detector_strategy.cc', 384 'network/portal_detector/network_portal_detector_strategy.cc',
385 'network/portal_detector/network_portal_detector_strategy.h', 385 'network/portal_detector/network_portal_detector_strategy.h',
386 'network/portal_detector/network_portal_detector_stub.cc', 386 'network/portal_detector/network_portal_detector_stub.cc',
387 'network/portal_detector/network_portal_detector_stub.h', 387 'network/portal_detector/network_portal_detector_stub.h',
388 'network/prohibited_technologies_handler.cc', 388 'network/prohibited_technologies_handler.cc',
389 'network/prohibited_technologies_handler.h', 389 'network/prohibited_technologies_handler.h',
390 'network/shill_property_handler.cc', 390 'network/shill_property_handler.cc',
391 'network/shill_property_handler.h', 391 'network/shill_property_handler.h',
392 'network/shill_property_util.cc', 392 'network/shill_property_util.cc',
393 'network/shill_property_util.h', 393 'network/shill_property_util.h',
394 'printing/printer_configuration.cc',
395 'printing/printer_configuration.h',
396 'printing/printer_translator.h',
397 'printing/printer_translator.cc',
398 'process_proxy/process_output_watcher.cc', 394 'process_proxy/process_output_watcher.cc',
399 'process_proxy/process_output_watcher.h', 395 'process_proxy/process_output_watcher.h',
400 'process_proxy/process_proxy.cc', 396 'process_proxy/process_proxy.cc',
401 'process_proxy/process_proxy.h', 397 'process_proxy/process_proxy.h',
402 'process_proxy/process_proxy_registry.cc', 398 'process_proxy/process_proxy_registry.cc',
403 'process_proxy/process_proxy_registry.h', 399 'process_proxy/process_proxy_registry.h',
404 'settings/cros_settings_names.cc', 400 'settings/cros_settings_names.cc',
405 'settings/cros_settings_names.h', 401 'settings/cros_settings_names.h',
406 'settings/cros_settings_provider.cc', 402 'settings/cros_settings_provider.cc',
407 'settings/cros_settings_provider.h', 403 'settings/cros_settings_provider.h',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 'network/network_ui_data_unittest.cc', 490 'network/network_ui_data_unittest.cc',
495 'network/network_util_unittest.cc', 491 'network/network_util_unittest.cc',
496 'network/onc/onc_certificate_importer_impl_unittest.cc', 492 'network/onc/onc_certificate_importer_impl_unittest.cc',
497 'network/onc/onc_merger_unittest.cc', 493 'network/onc/onc_merger_unittest.cc',
498 'network/onc/onc_normalizer_unittest.cc', 494 'network/onc/onc_normalizer_unittest.cc',
499 'network/onc/onc_translator_unittest.cc', 495 'network/onc/onc_translator_unittest.cc',
500 'network/onc/onc_utils_unittest.cc', 496 'network/onc/onc_utils_unittest.cc',
501 'network/onc/onc_validator_unittest.cc', 497 'network/onc/onc_validator_unittest.cc',
502 'network/prohibited_technologies_handler_unittest.cc', 498 'network/prohibited_technologies_handler_unittest.cc',
503 'network/shill_property_handler_unittest.cc', 499 'network/shill_property_handler_unittest.cc',
504 'printing/printer_translator_unittest.cc',
505 'process_proxy/process_output_watcher_unittest.cc', 500 'process_proxy/process_output_watcher_unittest.cc',
506 'process_proxy/process_proxy_unittest.cc', 501 'process_proxy/process_proxy_unittest.cc',
507 'settings/timezone_settings_unittest.cc', 502 'settings/timezone_settings_unittest.cc',
508 'system/name_value_pairs_parser_unittest.cc', 503 'system/name_value_pairs_parser_unittest.cc',
509 'system/version_loader_unittest.cc', 504 'system/version_loader_unittest.cc',
510 'timezone/timezone_unittest.cc', 505 'timezone/timezone_unittest.cc',
511 'tpm/tpm_token_info_getter_unittest.cc', 506 'tpm/tpm_token_info_getter_unittest.cc',
512 ], 507 ],
513 'use_binder%': 0, 508 'use_binder%': 0,
514 }, 509 },
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 '../build/isolate.gypi', 750 '../build/isolate.gypi',
756 ], 751 ],
757 'sources': [ 752 'sources': [
758 'chromeos_unittests.isolate', 753 'chromeos_unittests.isolate',
759 ], 754 ],
760 }, 755 },
761 ], 756 ],
762 }], 757 }],
763 ], 758 ],
764 } 759 }
OLDNEW
« no previous file with comments | « chromeos/BUILD.gn ('k') | chromeos/printing/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698