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

Side by Side Diff: chromeos/chromeos.gyp

Issue 187073002: Refactoring display configuration state to allow generic state objects (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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_memory.gypi', 10 'chromeos_memory.gypi',
11 'chromeos_tools.gypi', 11 'chromeos_tools.gypi',
12 ], 12 ],
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'chromeos', 15 'target_name': 'chromeos',
16 'type': '<(component)', 16 'type': '<(component)',
17 'dependencies': [ 17 'dependencies': [
18 '../base/base.gyp:base', 18 '../base/base.gyp:base',
19 '../base/base.gyp:base_prefs', 19 '../base/base.gyp:base_prefs',
20 '../components/components.gyp:onc_component', 20 '../components/components.gyp:onc_component',
21 '../crypto/crypto.gyp:crypto', 21 '../crypto/crypto.gyp:crypto',
22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
23 '../build/linux/system.gyp:dbus', 23 '../build/linux/system.gyp:dbus',
24 '../build/linux/system.gyp:ssl', 24 '../build/linux/system.gyp:ssl',
25 '../dbus/dbus.gyp:dbus', 25 '../dbus/dbus.gyp:dbus',
26 '../net/net.gyp:net', 26 '../net/net.gyp:net',
27 '../third_party/icu/icu.gyp:icui18n', 27 '../third_party/icu/icu.gyp:icui18n',
28 '../third_party/libxml/libxml.gyp:libxml', 28 '../third_party/libxml/libxml.gyp:libxml',
29 '../ui/display/display.gyp:display', 29 '../ui/display/display.gyp:display',
30 '../ui/gfx/gfx.gyp:gfx_geometry',
Daniel Erat 2014/03/05 01:56:12 i don't think that ui/gfx is currently permitted b
dnicoara 2014/03/05 17:29:25 Last time I spoke with oshima@ about this, he said
30 '../url/url.gyp:url_lib', 31 '../url/url.gyp:url_lib',
31 'ime/input_method.gyp:gencode', 32 'ime/input_method.gyp:gencode',
32 'power_manager_proto', 33 'power_manager_proto',
33 ], 34 ],
34 'defines': [ 35 'defines': [
35 'CHROMEOS_IMPLEMENTATION', 36 'CHROMEOS_IMPLEMENTATION',
36 ], 37 ],
37 'sources': [ 38 'sources': [
38 'app_mode/kiosk_oem_manifest_parser.cc', 39 'app_mode/kiosk_oem_manifest_parser.cc',
39 'app_mode/kiosk_oem_manifest_parser.h', 40 'app_mode/kiosk_oem_manifest_parser.h',
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'dbus/sms_client.cc', 200 'dbus/sms_client.cc',
200 'dbus/sms_client.h', 201 'dbus/sms_client.h',
201 'dbus/system_clock_client.cc', 202 'dbus/system_clock_client.cc',
202 'dbus/system_clock_client.h', 203 'dbus/system_clock_client.h',
203 'dbus/update_engine_client.cc', 204 'dbus/update_engine_client.cc',
204 'dbus/update_engine_client.h', 205 'dbus/update_engine_client.h',
205 'dbus/volume_state.cc', 206 'dbus/volume_state.cc',
206 'dbus/volume_state.h', 207 'dbus/volume_state.h',
207 'disks/disk_mount_manager.cc', 208 'disks/disk_mount_manager.cc',
208 'disks/disk_mount_manager.h', 209 'disks/disk_mount_manager.h',
209 'display/native_display_delegate.h',
210 'display/native_display_delegate_x11.cc',
211 'display/native_display_delegate_x11.h',
212 'display/native_display_event_dispatcher_x11.cc',
213 'display/native_display_event_dispatcher_x11.h',
214 'display/native_display_observer.h',
215 'display/output_configurator.cc', 210 'display/output_configurator.cc',
216 'display/output_configurator.h', 211 'display/output_configurator.h',
217 'display/output_util.cc',
218 'display/output_util.h',
219 'display/touchscreen_delegate_x11.cc', 212 'display/touchscreen_delegate_x11.cc',
220 'display/touchscreen_delegate_x11.h', 213 'display/touchscreen_delegate_x11.h',
221 'ime/component_extension_ime_manager.cc', 214 'ime/component_extension_ime_manager.cc',
222 'ime/component_extension_ime_manager.h', 215 'ime/component_extension_ime_manager.h',
223 'ime/extension_ime_util.cc', 216 'ime/extension_ime_util.cc',
224 'ime/extension_ime_util.h', 217 'ime/extension_ime_util.h',
225 'ime/fake_xkeyboard.cc', 218 'ime/fake_xkeyboard.cc',
226 'ime/fake_xkeyboard.h', 219 'ime/fake_xkeyboard.h',
227 'ime/composition_text.cc', 220 'ime/composition_text.cc',
228 'ime/composition_text.h', 221 'ime/composition_text.h',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 'tpm_token_loader.cc', 338 'tpm_token_loader.cc',
346 'tpm_token_loader.h' 339 'tpm_token_loader.h'
347 ], 340 ],
348 'conditions': [ 341 'conditions': [
349 ['use_x11 == 1', { 342 ['use_x11 == 1', {
350 'dependencies': [ 343 'dependencies': [
351 '../build/linux/system.gyp:glib', 344 '../build/linux/system.gyp:glib',
352 '../build/linux/system.gyp:x11', 345 '../build/linux/system.gyp:x11',
353 '../build/linux/system.gyp:xext', 346 '../build/linux/system.gyp:xext',
354 '../build/linux/system.gyp:xi', 347 '../build/linux/system.gyp:xi',
355 '../build/linux/system.gyp:xrandr',
356 ], 348 ],
357 }, { 349 }, {
358 # use_x11 == 0 350 # use_x11 == 0
359 'sources!': [ 351 'sources!': [
360 'ime/xkeyboard.cc', 352 'ime/xkeyboard.cc',
361 'ime/xkeyboard.h', 353 'ime/xkeyboard.h',
362 'display/output_configurator.cc', 354 'display/output_configurator.cc',
363 'display/output_configurator.h', 355 'display/output_configurator.h',
364 'display/output_util.cc',
365 'display/output_util.h',
366 'display/real_output_configurator_delegate.cc',
367 'display/real_output_configurator_delegate.h',
368 'ime/xkeyboard.cc', 356 'ime/xkeyboard.cc',
369 'ime/xkeyboard.h', 357 'ime/xkeyboard.h',
370 ], 358 ],
371 }], 359 }],
372 ], 360 ],
373 }, 361 },
374 { 362 {
375 # This target contains mocks that can be used to write unit tests. 363 # This target contains mocks that can be used to write unit tests.
376 'target_name': 'chromeos_test_support', 364 'target_name': 'chromeos_test_support',
377 'type': 'static_library', 365 'type': 'static_library',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 '../base/base.gyp:test_support_base', 442 '../base/base.gyp:test_support_base',
455 '../build/linux/system.gyp:dbus', 443 '../build/linux/system.gyp:dbus',
456 '../build/linux/system.gyp:ssl', 444 '../build/linux/system.gyp:ssl',
457 '../components/components.gyp:onc_component', 445 '../components/components.gyp:onc_component',
458 '../crypto/crypto.gyp:crypto', 446 '../crypto/crypto.gyp:crypto',
459 '../dbus/dbus.gyp:dbus_test_support', 447 '../dbus/dbus.gyp:dbus_test_support',
460 '../net/net.gyp:net', 448 '../net/net.gyp:net',
461 '../net/net.gyp:net_test_support', 449 '../net/net.gyp:net_test_support',
462 '../testing/gmock.gyp:gmock', 450 '../testing/gmock.gyp:gmock',
463 '../testing/gtest.gyp:gtest', 451 '../testing/gtest.gyp:gtest',
452 '../ui/display/display.gyp:display',
453 '../ui/display/display.gyp:display_test_util',
454 '../ui/gfx/gfx.gyp:gfx_geometry',
464 '../url/url.gyp:url_lib', 455 '../url/url.gyp:url_lib',
465 'chromeos_test_support', 456 'chromeos_test_support',
466 'power_manager_proto', 457 'power_manager_proto',
467 ], 458 ],
468 'sources': [ 459 'sources': [
469 'app_mode/kiosk_oem_manifest_parser_unittest.cc', 460 'app_mode/kiosk_oem_manifest_parser_unittest.cc',
470 'attestation/attestation_flow_unittest.cc', 461 'attestation/attestation_flow_unittest.cc',
471 'audio/cras_audio_handler_unittest.cc', 462 'audio/cras_audio_handler_unittest.cc',
472 'cert_loader_unittest.cc', 463 'cert_loader_unittest.cc',
473 'cryptohome/system_salt_getter_unittest.cc', 464 'cryptohome/system_salt_getter_unittest.cc',
474 'dbus/blocking_method_caller_unittest.cc', 465 'dbus/blocking_method_caller_unittest.cc',
475 'dbus/cros_disks_client_unittest.cc', 466 'dbus/cros_disks_client_unittest.cc',
476 'dbus/gsm_sms_client_unittest.cc', 467 'dbus/gsm_sms_client_unittest.cc',
477 'dbus/introspectable_client_unittest.cc', 468 'dbus/introspectable_client_unittest.cc',
478 'dbus/modem_messaging_client_unittest.cc', 469 'dbus/modem_messaging_client_unittest.cc',
479 'dbus/nfc_client_unittest.cc', 470 'dbus/nfc_client_unittest.cc',
480 'dbus/power_policy_controller_unittest.cc', 471 'dbus/power_policy_controller_unittest.cc',
481 'dbus/shill_client_unittest_base.cc', 472 'dbus/shill_client_unittest_base.cc',
482 'dbus/shill_client_unittest_base.h', 473 'dbus/shill_client_unittest_base.h',
483 'dbus/shill_device_client_unittest.cc', 474 'dbus/shill_device_client_unittest.cc',
484 'dbus/shill_ipconfig_client_unittest.cc', 475 'dbus/shill_ipconfig_client_unittest.cc',
485 'dbus/shill_manager_client_unittest.cc', 476 'dbus/shill_manager_client_unittest.cc',
486 'dbus/shill_profile_client_unittest.cc', 477 'dbus/shill_profile_client_unittest.cc',
487 'dbus/shill_service_client_unittest.cc', 478 'dbus/shill_service_client_unittest.cc',
488 'disks/disk_mount_manager_unittest.cc', 479 'disks/disk_mount_manager_unittest.cc',
489 'display/native_display_event_dispatcher_x11_unittest.cc',
490 'display/output_configurator_unittest.cc', 480 'display/output_configurator_unittest.cc',
491 'display/output_util_unittest.cc',
492 'ime/component_extension_ime_manager_unittest.cc', 481 'ime/component_extension_ime_manager_unittest.cc',
493 'ime/extension_ime_util_unittest.cc', 482 'ime/extension_ime_util_unittest.cc',
494 'ime/composition_text_unittest.cc', 483 'ime/composition_text_unittest.cc',
495 'ime/input_method_manager.h', 484 'ime/input_method_manager.h',
496 'ime/input_method_whitelist_unittest.cc', 485 'ime/input_method_whitelist_unittest.cc',
497 'ime/xkeyboard_unittest.cc', 486 'ime/xkeyboard_unittest.cc',
498 'login/login_state_unittest.cc', 487 'login/login_state_unittest.cc',
499 'network/client_cert_resolver_unittest.cc', 488 'network/client_cert_resolver_unittest.cc',
500 'network/geolocation_handler_unittest.cc', 489 'network/geolocation_handler_unittest.cc',
501 'network/managed_network_configuration_handler_unittest.cc', 490 'network/managed_network_configuration_handler_unittest.cc',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 '../third_party/cros_system_api/dbus/power_manager/suspend.proto', 536 '../third_party/cros_system_api/dbus/power_manager/suspend.proto',
548 ], 537 ],
549 'variables': { 538 'variables': {
550 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager', 539 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager',
551 'proto_out_dir': 'chromeos/dbus/power_manager', 540 'proto_out_dir': 'chromeos/dbus/power_manager',
552 }, 541 },
553 'includes': ['../build/protoc.gypi'], 542 'includes': ['../build/protoc.gypi'],
554 }, 543 },
555 ], 544 ],
556 } 545 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698