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

Side by Side Diff: chromeos/chromeos.gyp

Issue 153153002: [chromeos] Move files from chromeos/power to chrome/browser/chromeos/power (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/chrome_tests_unit.gypi ('k') | chromeos/power/power_data_collector.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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 'network/policy_util.cc', 313 'network/policy_util.cc',
314 'network/policy_util.h', 314 'network/policy_util.h',
315 'network/policy_applicator.cc', 315 'network/policy_applicator.cc',
316 'network/policy_applicator.h', 316 'network/policy_applicator.h',
317 'network/shill_property_handler.cc', 317 'network/shill_property_handler.cc',
318 'network/shill_property_handler.h', 318 'network/shill_property_handler.h',
319 'network/shill_property_util.cc', 319 'network/shill_property_util.cc',
320 'network/shill_property_util.h', 320 'network/shill_property_util.h',
321 'network/dhcp_proxy_script_fetcher_chromeos.cc', 321 'network/dhcp_proxy_script_fetcher_chromeos.cc',
322 'network/dhcp_proxy_script_fetcher_chromeos.h', 322 'network/dhcp_proxy_script_fetcher_chromeos.h',
323 'power/power_data_collector.cc',
324 'power/power_data_collector.h',
325 'process_proxy/process_output_watcher.cc', 323 'process_proxy/process_output_watcher.cc',
326 'process_proxy/process_output_watcher.h', 324 'process_proxy/process_output_watcher.h',
327 'process_proxy/process_proxy.cc', 325 'process_proxy/process_proxy.cc',
328 'process_proxy/process_proxy.h', 326 'process_proxy/process_proxy.h',
329 'process_proxy/process_proxy_registry.cc', 327 'process_proxy/process_proxy_registry.cc',
330 'process_proxy/process_proxy_registry.h', 328 'process_proxy/process_proxy_registry.h',
331 'settings/cros_settings_names.cc', 329 'settings/cros_settings_names.cc',
332 'settings/cros_settings_names.h', 330 'settings/cros_settings_names.h',
333 'settings/cros_settings_provider.cc', 331 'settings/cros_settings_provider.cc',
334 'settings/cros_settings_provider.h', 332 'settings/cros_settings_provider.h',
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 'network/network_ui_data_unittest.cc', 512 'network/network_ui_data_unittest.cc',
515 'network/network_util_unittest.cc', 513 'network/network_util_unittest.cc',
516 'network/onc/onc_certificate_importer_impl_unittest.cc', 514 'network/onc/onc_certificate_importer_impl_unittest.cc',
517 'network/onc/onc_merger_unittest.cc', 515 'network/onc/onc_merger_unittest.cc',
518 'network/onc/onc_normalizer_unittest.cc', 516 'network/onc/onc_normalizer_unittest.cc',
519 'network/onc/onc_translator_unittest.cc', 517 'network/onc/onc_translator_unittest.cc',
520 'network/onc/onc_utils_unittest.cc', 518 'network/onc/onc_utils_unittest.cc',
521 'network/onc/onc_validator_unittest.cc', 519 'network/onc/onc_validator_unittest.cc',
522 'network/shill_property_handler_unittest.cc', 520 'network/shill_property_handler_unittest.cc',
523 'network/shill_property_util_unittest.cc', 521 'network/shill_property_util_unittest.cc',
524 'power/power_data_collector_unittest.cc',
525 'process_proxy/process_output_watcher_unittest.cc', 522 'process_proxy/process_output_watcher_unittest.cc',
526 'process_proxy/process_proxy_unittest.cc', 523 'process_proxy/process_proxy_unittest.cc',
527 'system/name_value_pairs_parser_unittest.cc', 524 'system/name_value_pairs_parser_unittest.cc',
528 ], 525 ],
529 'include_dirs': [ 526 'include_dirs': [
530 '..', 527 '..',
531 ], 528 ],
532 'conditions': [ 529 'conditions': [
533 [ 'linux_use_tcmalloc==1', { 530 [ 'linux_use_tcmalloc==1', {
534 'dependencies': [ 531 'dependencies': [
(...skipping 15 matching lines...) Expand all
550 '../third_party/cros_system_api/dbus/power_manager/suspend.proto', 547 '../third_party/cros_system_api/dbus/power_manager/suspend.proto',
551 ], 548 ],
552 'variables': { 549 'variables': {
553 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager', 550 'proto_in_dir': '../third_party/cros_system_api/dbus/power_manager',
554 'proto_out_dir': 'chromeos/dbus/power_manager', 551 'proto_out_dir': 'chromeos/dbus/power_manager',
555 }, 552 },
556 'includes': ['../build/protoc.gypi'], 553 'includes': ['../build/protoc.gypi'],
557 }, 554 },
558 ], 555 ],
559 } 556 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chromeos/power/power_data_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698