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

Side by Side Diff: chromeos/chromeos.gyp

Issue 1648403002: Move base/prefs to components/prefs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/BUILD.gn » ('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 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'chromeos_sources': [ 9 'chromeos_sources': [
10 'accelerometer/accelerometer_reader.cc', 10 'accelerometer/accelerometer_reader.cc',
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 'chromeos_tools.gypi' 504 'chromeos_tools.gypi'
505 ], 505 ],
506 'targets': [ 506 'targets': [
507 { 507 {
508 # GN version: //chromeos 508 # GN version: //chromeos
509 'target_name': 'chromeos', 509 'target_name': 'chromeos',
510 'type': '<(component)', 510 'type': '<(component)',
511 'dependencies': [ 511 'dependencies': [
512 '../base/base.gyp:base', 512 '../base/base.gyp:base',
513 '../base/base.gyp:base_i18n', 513 '../base/base.gyp:base_i18n',
514 '../base/base.gyp:base_prefs',
515 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 514 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
516 '../build/linux/system.gyp:dbus', 515 '../build/linux/system.gyp:dbus',
517 '../build/linux/system.gyp:ssl', 516 '../build/linux/system.gyp:ssl',
518 '../components/components.gyp:cloud_policy_proto', 517 '../components/components.gyp:cloud_policy_proto',
519 '../components/components.gyp:device_event_log_component', 518 '../components/components.gyp:device_event_log_component',
520 '../components/components.gyp:onc_component', 519 '../components/components.gyp:onc_component',
521 '../components/components.gyp:proxy_config', 520 '../components/components.gyp:proxy_config',
522 '../components/components.gyp:signin_core_account_id', 521 '../components/components.gyp:signin_core_account_id',
522 '../components/prefs/prefs.gyp:prefs',
523 '../crypto/crypto.gyp:crypto', 523 '../crypto/crypto.gyp:crypto',
524 '../dbus/dbus.gyp:dbus', 524 '../dbus/dbus.gyp:dbus',
525 '../google_apis/google_apis.gyp:google_apis', 525 '../google_apis/google_apis.gyp:google_apis',
526 '../net/net.gyp:net', 526 '../net/net.gyp:net',
527 '../third_party/icu/icu.gyp:icui18n', 527 '../third_party/icu/icu.gyp:icui18n',
528 '../third_party/libxml/libxml.gyp:libxml', 528 '../third_party/libxml/libxml.gyp:libxml',
529 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 529 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
530 '../url/url.gyp:url_lib', 530 '../url/url.gyp:url_lib',
531 'cryptohome_proto', 531 'cryptohome_proto',
532 'power_manager_proto', 532 'power_manager_proto',
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 ], 637 ],
638 'include_dirs': [ 638 'include_dirs': [
639 '..', 639 '..',
640 ], 640 ],
641 }, 641 },
642 { 642 {
643 # GN version: //chromeos:chromeos_unittests 643 # GN version: //chromeos:chromeos_unittests
644 'target_name': 'chromeos_unittests', 644 'target_name': 'chromeos_unittests',
645 'type': 'executable', 645 'type': 'executable',
646 'dependencies': [ 646 'dependencies': [
647 '../base/base.gyp:base_prefs_test_support',
648 '../base/base.gyp:run_all_unittests', 647 '../base/base.gyp:run_all_unittests',
649 '../base/base.gyp:test_support_base', 648 '../base/base.gyp:test_support_base',
650 '../build/linux/system.gyp:dbus', 649 '../build/linux/system.gyp:dbus',
651 '../build/linux/system.gyp:ssl', 650 '../build/linux/system.gyp:ssl',
652 '../components/components.gyp:onc_component', 651 '../components/components.gyp:onc_component',
653 '../components/components.gyp:proxy_config', 652 '../components/components.gyp:proxy_config',
653 '../components/prefs/prefs.gyp:prefs_test_support',
654 '../crypto/crypto.gyp:crypto', 654 '../crypto/crypto.gyp:crypto',
655 '../crypto/crypto.gyp:crypto_test_support', 655 '../crypto/crypto.gyp:crypto_test_support',
656 '../dbus/dbus.gyp:dbus_test_support', 656 '../dbus/dbus.gyp:dbus_test_support',
657 '../google_apis/google_apis.gyp:google_apis', 657 '../google_apis/google_apis.gyp:google_apis',
658 '../net/net.gyp:net', 658 '../net/net.gyp:net',
659 '../net/net.gyp:net_test_support', 659 '../net/net.gyp:net_test_support',
660 '../testing/gmock.gyp:gmock', 660 '../testing/gmock.gyp:gmock',
661 '../testing/gtest.gyp:gtest', 661 '../testing/gtest.gyp:gtest',
662 '../third_party/icu/icu.gyp:icuuc', 662 '../third_party/icu/icu.gyp:icuuc',
663 '../third_party/icu/icu.gyp:icui18n', 663 '../third_party/icu/icu.gyp:icui18n',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 '../build/isolate.gypi', 744 '../build/isolate.gypi',
745 ], 745 ],
746 'sources': [ 746 'sources': [
747 'chromeos_unittests.isolate', 747 'chromeos_unittests.isolate',
748 ], 748 ],
749 }, 749 },
750 ], 750 ],
751 }], 751 }],
752 ], 752 ],
753 } 753 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698