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

Side by Side Diff: chromeos/chromeos.gyp

Issue 1693383003: ChromeOS cryptohome should be able to use gaia id as user identifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed unit tests. Created 4 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
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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 514 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
515 '../build/linux/system.gyp:dbus', 515 '../build/linux/system.gyp:dbus',
516 '../build/linux/system.gyp:ssl', 516 '../build/linux/system.gyp:ssl',
517 '../components/components.gyp:cloud_policy_proto', 517 '../components/components.gyp:cloud_policy_proto',
518 '../components/components.gyp:device_event_log_component', 518 '../components/components.gyp:device_event_log_component',
519 '../components/components.gyp:onc_component', 519 '../components/components.gyp:onc_component',
520 '../components/components.gyp:proxy_config', 520 '../components/components.gyp:proxy_config',
521 '../components/components.gyp:user_manager',
521 '../components/components.gyp:signin_core_account_id', 522 '../components/components.gyp:signin_core_account_id',
522 '../components/prefs/prefs.gyp:prefs', 523 '../components/prefs/prefs.gyp:prefs',
523 '../crypto/crypto.gyp:crypto', 524 '../crypto/crypto.gyp:crypto',
524 '../dbus/dbus.gyp:dbus', 525 '../dbus/dbus.gyp:dbus',
525 '../google_apis/google_apis.gyp:google_apis', 526 '../google_apis/google_apis.gyp:google_apis',
526 '../net/net.gyp:net', 527 '../net/net.gyp:net',
527 '../third_party/icu/icu.gyp:icui18n', 528 '../third_party/icu/icu.gyp:icui18n',
528 '../third_party/libxml/libxml.gyp:libxml', 529 '../third_party/libxml/libxml.gyp:libxml',
529 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 530 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
530 '../url/url.gyp:url_lib', 531 '../url/url.gyp:url_lib',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 # GN version: //chromeos:chromeos_unittests 644 # GN version: //chromeos:chromeos_unittests
644 'target_name': 'chromeos_unittests', 645 'target_name': 'chromeos_unittests',
645 'type': 'executable', 646 'type': 'executable',
646 'dependencies': [ 647 'dependencies': [
647 '../base/base.gyp:run_all_unittests', 648 '../base/base.gyp:run_all_unittests',
648 '../base/base.gyp:test_support_base', 649 '../base/base.gyp:test_support_base',
649 '../build/linux/system.gyp:dbus', 650 '../build/linux/system.gyp:dbus',
650 '../build/linux/system.gyp:ssl', 651 '../build/linux/system.gyp:ssl',
651 '../components/components.gyp:onc_component', 652 '../components/components.gyp:onc_component',
652 '../components/components.gyp:proxy_config', 653 '../components/components.gyp:proxy_config',
654 '../components/components.gyp:signin_core_account_id',
653 '../components/prefs/prefs.gyp:prefs_test_support', 655 '../components/prefs/prefs.gyp:prefs_test_support',
654 '../crypto/crypto.gyp:crypto', 656 '../crypto/crypto.gyp:crypto',
655 '../crypto/crypto.gyp:crypto_test_support', 657 '../crypto/crypto.gyp:crypto_test_support',
656 '../dbus/dbus.gyp:dbus_test_support', 658 '../dbus/dbus.gyp:dbus_test_support',
657 '../google_apis/google_apis.gyp:google_apis', 659 '../google_apis/google_apis.gyp:google_apis',
658 '../net/net.gyp:net', 660 '../net/net.gyp:net',
659 '../net/net.gyp:net_test_support', 661 '../net/net.gyp:net_test_support',
660 '../testing/gmock.gyp:gmock', 662 '../testing/gmock.gyp:gmock',
661 '../testing/gtest.gyp:gtest', 663 '../testing/gtest.gyp:gtest',
662 '../third_party/icu/icu.gyp:icuuc', 664 '../third_party/icu/icu.gyp:icuuc',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 '../build/isolate.gypi', 746 '../build/isolate.gypi',
745 ], 747 ],
746 'sources': [ 748 'sources': [
747 'chromeos_unittests.isolate', 749 'chromeos_unittests.isolate',
748 ], 750 ],
749 }, 751 },
750 ], 752 ],
751 }], 753 }],
752 ], 754 ],
753 } 755 }
OLDNEW
« no previous file with comments | « chromeos/attestation/mock_attestation_flow.cc ('k') | chromeos/cryptohome/async_method_caller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698