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

Side by Side Diff: chromeos/chromeos.gyp

Issue 12676017: Adding policy support to the new network configuration stack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang errors. Created 7 years, 8 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 'includes': [ 9 'includes': [
10 'chromeos_tools.gypi' 10 'chromeos_tools.gypi'
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 'dbus/mock_power_manager_client.cc', 358 'dbus/mock_power_manager_client.cc',
359 'dbus/mock_power_manager_client.h', 359 'dbus/mock_power_manager_client.h',
360 'dbus/mock_session_manager_client.cc', 360 'dbus/mock_session_manager_client.cc',
361 'dbus/mock_session_manager_client.h', 361 'dbus/mock_session_manager_client.h',
362 'dbus/mock_sms_client.cc', 362 'dbus/mock_sms_client.cc',
363 'dbus/mock_sms_client.h', 363 'dbus/mock_sms_client.h',
364 'dbus/mock_system_clock_client.cc', 364 'dbus/mock_system_clock_client.cc',
365 'dbus/mock_system_clock_client.h', 365 'dbus/mock_system_clock_client.h',
366 'dbus/mock_update_engine_client.cc', 366 'dbus/mock_update_engine_client.cc',
367 'dbus/mock_update_engine_client.h', 367 'dbus/mock_update_engine_client.h',
368 'dbus/shill_profile_client_stub.cc',
369 'dbus/shill_profile_client_stub.h',
368 'disks/mock_disk_mount_manager.cc', 370 'disks/mock_disk_mount_manager.cc',
369 'disks/mock_disk_mount_manager.h', 371 'disks/mock_disk_mount_manager.h',
370 'ime/mock_component_extension_ime_manager_delegate.cc', 372 'ime/mock_component_extension_ime_manager_delegate.cc',
371 'ime/mock_component_extension_ime_manager_delegate.h', 373 'ime/mock_component_extension_ime_manager_delegate.h',
372 'network/onc/onc_test_utils.cc', 374 'network/onc/onc_test_utils.cc',
373 'network/onc/onc_test_utils.h', 375 'network/onc/onc_test_utils.h',
374 ], 376 ],
375 'include_dirs': [ 377 'include_dirs': [
376 '..', 378 '..',
377 ], 379 ],
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 'disks/disk_mount_manager_unittest.cc', 456 'disks/disk_mount_manager_unittest.cc',
455 'ime/component_extension_ime_manager_unittest.cc', 457 'ime/component_extension_ime_manager_unittest.cc',
456 'ime/extension_ime_util_unittest.cc', 458 'ime/extension_ime_util_unittest.cc',
457 'ime/input_method_descriptor_unittest.cc', 459 'ime/input_method_descriptor_unittest.cc',
458 'ime/input_method_property_unittest.cc', 460 'ime/input_method_property_unittest.cc',
459 'ime/input_method_whitelist_unittest.cc', 461 'ime/input_method_whitelist_unittest.cc',
460 'ime/xkeyboard_unittest.cc', 462 'ime/xkeyboard_unittest.cc',
461 'login/login_state_unittest.cc', 463 'login/login_state_unittest.cc',
462 'network/cros_network_functions_unittest.cc', 464 'network/cros_network_functions_unittest.cc',
463 'network/geolocation_handler_unittest.cc', 465 'network/geolocation_handler_unittest.cc',
466 'network/managed_network_configuration_handler_unittest.cc',
464 'network/network_change_notifier_chromeos_unittest.cc', 467 'network/network_change_notifier_chromeos_unittest.cc',
465 'network/network_configuration_handler_unittest.cc', 468 'network/network_configuration_handler_unittest.cc',
466 'network/network_event_log_unittest.cc', 469 'network/network_event_log_unittest.cc',
467 'network/network_sms_handler_unittest.cc', 470 'network/network_sms_handler_unittest.cc',
468 'network/network_state_handler_unittest.cc', 471 'network/network_state_handler_unittest.cc',
469 'network/network_ui_data_unittest.cc', 472 'network/network_ui_data_unittest.cc',
470 'network/network_util_unittest.cc', 473 'network/network_util_unittest.cc',
471 'network/onc/onc_certificate_importer_unittest.cc', 474 'network/onc/onc_certificate_importer_unittest.cc',
472 'network/onc/onc_merger_unittest.cc', 475 'network/onc/onc_merger_unittest.cc',
473 'network/onc/onc_normalizer_unittest.cc', 476 'network/onc/onc_normalizer_unittest.cc',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 '../third_party/cros_system_api/dbus/video_activity_update.proto', 533 '../third_party/cros_system_api/dbus/video_activity_update.proto',
531 ], 534 ],
532 'variables': { 535 'variables': {
533 'proto_in_dir': '../third_party/cros_system_api/dbus/', 536 'proto_in_dir': '../third_party/cros_system_api/dbus/',
534 'proto_out_dir': 'chromeos/dbus', 537 'proto_out_dir': 'chromeos/dbus',
535 }, 538 },
536 'includes': ['../build/protoc.gypi'], 539 'includes': ['../build/protoc.gypi'],
537 }, 540 },
538 ], 541 ],
539 } 542 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/networking/test.js ('k') | chromeos/dbus/mock_shill_manager_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698