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

Side by Side Diff: chromeos/chromeos.gyp

Issue 13495003: Add LoginState class to src/chromeos/login (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
« no previous file with comments | « chrome/browser/ui/webui/screenshot_source.cc ('k') | chromeos/login/login_state.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_tools.gypi' 10 'chromeos_tools.gypi'
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'ime/input_method_config.h', 173 'ime/input_method_config.h',
174 'ime/input_method_delegate.h', 174 'ime/input_method_delegate.h',
175 'ime/input_method_descriptor.cc', 175 'ime/input_method_descriptor.cc',
176 'ime/input_method_descriptor.h', 176 'ime/input_method_descriptor.h',
177 'ime/input_method_property.cc', 177 'ime/input_method_property.cc',
178 'ime/input_method_property.h', 178 'ime/input_method_property.h',
179 'ime/input_method_whitelist.cc', 179 'ime/input_method_whitelist.cc',
180 'ime/input_method_whitelist.h', 180 'ime/input_method_whitelist.h',
181 'ime/xkeyboard.cc', 181 'ime/xkeyboard.cc',
182 'ime/xkeyboard.h', 182 'ime/xkeyboard.h',
183 'login/login_state.cc',
184 'login/login_state.h',
183 'network/certificate_pattern.cc', 185 'network/certificate_pattern.cc',
184 'network/certificate_pattern.h', 186 'network/certificate_pattern.h',
185 'network/cros_network_functions.cc', 187 'network/cros_network_functions.cc',
186 'network/cros_network_functions.h', 188 'network/cros_network_functions.h',
187 'network/device_state.cc', 189 'network/device_state.cc',
188 'network/device_state.h', 190 'network/device_state.h',
189 'network/geolocation_handler.cc', 191 'network/geolocation_handler.cc',
190 'network/geolocation_handler.h', 192 'network/geolocation_handler.h',
191 'network/managed_network_configuration_handler.cc', 193 'network/managed_network_configuration_handler.cc',
192 'network/managed_network_configuration_handler.h', 194 'network/managed_network_configuration_handler.h',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 'dbus/ibus/ibus_text_unittest.cc', 435 'dbus/ibus/ibus_text_unittest.cc',
434 'dbus/introspectable_client_unittest.cc', 436 'dbus/introspectable_client_unittest.cc',
435 'dbus/modem_messaging_client_unittest.cc', 437 'dbus/modem_messaging_client_unittest.cc',
436 'disks/disk_mount_manager_unittest.cc', 438 'disks/disk_mount_manager_unittest.cc',
437 'ime/component_extension_ime_manager_unittest.cc', 439 'ime/component_extension_ime_manager_unittest.cc',
438 'ime/extension_ime_util_unittest.cc', 440 'ime/extension_ime_util_unittest.cc',
439 'ime/input_method_descriptor_unittest.cc', 441 'ime/input_method_descriptor_unittest.cc',
440 'ime/input_method_property_unittest.cc', 442 'ime/input_method_property_unittest.cc',
441 'ime/input_method_whitelist_unittest.cc', 443 'ime/input_method_whitelist_unittest.cc',
442 'ime/xkeyboard_unittest.cc', 444 'ime/xkeyboard_unittest.cc',
445 'login/login_state_unittest.cc',
443 'network/cros_network_functions_unittest.cc', 446 'network/cros_network_functions_unittest.cc',
444 'network/geolocation_handler_unittest.cc', 447 'network/geolocation_handler_unittest.cc',
445 'network/network_change_notifier_chromeos_unittest.cc', 448 'network/network_change_notifier_chromeos_unittest.cc',
446 'network/network_configuration_handler_unittest.cc', 449 'network/network_configuration_handler_unittest.cc',
447 'network/network_event_log_unittest.cc', 450 'network/network_event_log_unittest.cc',
448 'network/network_sms_handler_unittest.cc', 451 'network/network_sms_handler_unittest.cc',
449 'network/network_state_handler_unittest.cc', 452 'network/network_state_handler_unittest.cc',
450 'network/network_ui_data_unittest.cc', 453 'network/network_ui_data_unittest.cc',
451 'network/network_util_unittest.cc', 454 'network/network_util_unittest.cc',
452 'network/onc/onc_certificate_importer_unittest.cc', 455 'network/onc/onc_certificate_importer_unittest.cc',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 '../third_party/cros_system_api/dbus/video_activity_update.proto', 514 '../third_party/cros_system_api/dbus/video_activity_update.proto',
512 ], 515 ],
513 'variables': { 516 'variables': {
514 'proto_in_dir': '../third_party/cros_system_api/dbus/', 517 'proto_in_dir': '../third_party/cros_system_api/dbus/',
515 'proto_out_dir': 'chromeos/dbus', 518 'proto_out_dir': 'chromeos/dbus',
516 }, 519 },
517 'includes': ['../build/protoc.gypi'], 520 'includes': ['../build/protoc.gypi'],
518 }, 521 },
519 ], 522 ],
520 } 523 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/screenshot_source.cc ('k') | chromeos/login/login_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698