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

Side by Side Diff: chromeos/chromeos.gyp

Issue 15067012: Move chromeos specific utility functions for display to chromeos/display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added test Created 7 years, 7 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 | « ash/display/display_change_observer_x11.cc ('k') | chromeos/display/output_configurator.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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 'dbus/system_clock_client.cc', 198 'dbus/system_clock_client.cc',
199 'dbus/system_clock_client.h', 199 'dbus/system_clock_client.h',
200 'dbus/update_engine_client.cc', 200 'dbus/update_engine_client.cc',
201 'dbus/update_engine_client.h', 201 'dbus/update_engine_client.h',
202 'dbus/volume_state.cc', 202 'dbus/volume_state.cc',
203 'dbus/volume_state.h', 203 'dbus/volume_state.h',
204 'disks/disk_mount_manager.cc', 204 'disks/disk_mount_manager.cc',
205 'disks/disk_mount_manager.h', 205 'disks/disk_mount_manager.h',
206 'display/output_configurator.cc', 206 'display/output_configurator.cc',
207 'display/output_configurator.h', 207 'display/output_configurator.h',
208 'display/output_util.cc',
209 'display/output_util.h',
208 'display/real_output_configurator_delegate.cc', 210 'display/real_output_configurator_delegate.cc',
209 'display/real_output_configurator_delegate.h', 211 'display/real_output_configurator_delegate.h',
210 'ime/component_extension_ime_manager.cc', 212 'ime/component_extension_ime_manager.cc',
211 'ime/component_extension_ime_manager.h', 213 'ime/component_extension_ime_manager.h',
212 'ime/extension_ime_util.cc', 214 'ime/extension_ime_util.cc',
213 'ime/extension_ime_util.h', 215 'ime/extension_ime_util.h',
214 'ime/ibus_bridge.cc', 216 'ime/ibus_bridge.cc',
215 'ime/ibus_bridge.h', 217 'ime/ibus_bridge.h',
216 'ime/ibus_daemon_controller.cc', 218 'ime/ibus_daemon_controller.cc',
217 'ime/ibus_daemon_controller.h', 219 'ime/ibus_daemon_controller.h',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 '../net/net.gyp:net', 488 '../net/net.gyp:net',
487 '../testing/gmock.gyp:gmock', 489 '../testing/gmock.gyp:gmock',
488 '../testing/gtest.gyp:gtest', 490 '../testing/gtest.gyp:gtest',
489 'chromeos_test_support', 491 'chromeos_test_support',
490 'power_manager_proto', 492 'power_manager_proto',
491 ], 493 ],
492 'sources': [ 494 'sources': [
493 'attestation/attestation_flow_unittest.cc', 495 'attestation/attestation_flow_unittest.cc',
494 'app_mode/kiosk_oem_manifest_parser_unittest.cc', 496 'app_mode/kiosk_oem_manifest_parser_unittest.cc',
495 'display/output_configurator_unittest.cc', 497 'display/output_configurator_unittest.cc',
498 'display/output_util_unittest.cc',
496 'dbus/blocking_method_caller_unittest.cc', 499 'dbus/blocking_method_caller_unittest.cc',
497 'dbus/power_policy_controller_unittest.cc', 500 'dbus/power_policy_controller_unittest.cc',
498 'dbus/shill_client_unittest_base.cc', 501 'dbus/shill_client_unittest_base.cc',
499 'dbus/shill_client_unittest_base.h', 502 'dbus/shill_client_unittest_base.h',
500 'dbus/shill_device_client_unittest.cc', 503 'dbus/shill_device_client_unittest.cc',
501 'dbus/shill_ipconfig_client_unittest.cc', 504 'dbus/shill_ipconfig_client_unittest.cc',
502 'dbus/shill_manager_client_unittest.cc', 505 'dbus/shill_manager_client_unittest.cc',
503 'dbus/shill_profile_client_unittest.cc', 506 'dbus/shill_profile_client_unittest.cc',
504 'dbus/shill_service_client_unittest.cc', 507 'dbus/shill_service_client_unittest.cc',
505 'dbus/gsm_sms_client_unittest.cc', 508 'dbus/gsm_sms_client_unittest.cc',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 '../third_party/cros_system_api/dbus/video_activity_update.proto', 590 '../third_party/cros_system_api/dbus/video_activity_update.proto',
588 ], 591 ],
589 'variables': { 592 'variables': {
590 'proto_in_dir': '../third_party/cros_system_api/dbus/', 593 'proto_in_dir': '../third_party/cros_system_api/dbus/',
591 'proto_out_dir': 'chromeos/dbus', 594 'proto_out_dir': 'chromeos/dbus',
592 }, 595 },
593 'includes': ['../build/protoc.gypi'], 596 'includes': ['../build/protoc.gypi'],
594 }, 597 },
595 ], 598 ],
596 } 599 }
OLDNEW
« no previous file with comments | « ash/display/display_change_observer_x11.cc ('k') | chromeos/display/output_configurator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698