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

Side by Side Diff: chromeos/chromeos.gyp

Issue 419013003: Replace c/b/nss_context by a KeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, format. Created 6 years, 2 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 # 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 { 452 {
453 # GN version: //chromeos 453 # GN version: //chromeos
454 'target_name': 'chromeos', 454 'target_name': 'chromeos',
455 'type': '<(component)', 455 'type': '<(component)',
456 'dependencies': [ 456 'dependencies': [
457 '../base/base.gyp:base', 457 '../base/base.gyp:base',
458 '../base/base.gyp:base_prefs', 458 '../base/base.gyp:base_prefs',
459 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 459 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
460 '../build/linux/system.gyp:dbus', 460 '../build/linux/system.gyp:dbus',
461 '../build/linux/system.gyp:ssl', 461 '../build/linux/system.gyp:ssl',
462 '../components/components.gyp:cert_database',
462 '../components/components.gyp:cloud_policy_proto', 463 '../components/components.gyp:cloud_policy_proto',
463 '../components/components.gyp:onc_component', 464 '../components/components.gyp:onc_component',
464 '../crypto/crypto.gyp:crypto', 465 '../crypto/crypto.gyp:crypto',
465 '../dbus/dbus.gyp:dbus', 466 '../dbus/dbus.gyp:dbus',
466 '../google_apis/google_apis.gyp:google_apis', 467 '../google_apis/google_apis.gyp:google_apis',
467 '../net/net.gyp:net', 468 '../net/net.gyp:net',
468 '../third_party/icu/icu.gyp:icui18n', 469 '../third_party/icu/icu.gyp:icui18n',
469 '../third_party/libxml/libxml.gyp:libxml', 470 '../third_party/libxml/libxml.gyp:libxml',
470 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 471 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
471 '../ui/accelerometer/ui_accelerometer.gyp:ui_accelerometer', 472 '../ui/accelerometer/ui_accelerometer.gyp:ui_accelerometer',
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 }, 591 },
591 { 592 {
592 # GN version: //chromeos:chromeos_unittests 593 # GN version: //chromeos:chromeos_unittests
593 'target_name': 'chromeos_unittests', 594 'target_name': 'chromeos_unittests',
594 'type': 'executable', 595 'type': 'executable',
595 'dependencies': [ 596 'dependencies': [
596 '../base/base.gyp:run_all_unittests', 597 '../base/base.gyp:run_all_unittests',
597 '../base/base.gyp:test_support_base', 598 '../base/base.gyp:test_support_base',
598 '../build/linux/system.gyp:dbus', 599 '../build/linux/system.gyp:dbus',
599 '../build/linux/system.gyp:ssl', 600 '../build/linux/system.gyp:ssl',
601 '../components/components.gyp:cert_database',
600 '../components/components.gyp:onc_component', 602 '../components/components.gyp:onc_component',
601 '../crypto/crypto.gyp:crypto', 603 '../crypto/crypto.gyp:crypto',
602 '../crypto/crypto.gyp:crypto_test_support', 604 '../crypto/crypto.gyp:crypto_test_support',
603 '../dbus/dbus.gyp:dbus_test_support', 605 '../dbus/dbus.gyp:dbus_test_support',
604 '../google_apis/google_apis.gyp:google_apis', 606 '../google_apis/google_apis.gyp:google_apis',
605 '../net/net.gyp:net', 607 '../net/net.gyp:net',
606 '../net/net.gyp:net_test_support', 608 '../net/net.gyp:net_test_support',
607 '../testing/gmock.gyp:gmock', 609 '../testing/gmock.gyp:gmock',
608 '../testing/gtest.gyp:gtest', 610 '../testing/gtest.gyp:gtest',
609 '../url/url.gyp:url_lib', 611 '../url/url.gyp:url_lib',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto', 673 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto',
672 ], 674 ],
673 'variables': { 675 'variables': {
674 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 676 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
675 'proto_out_dir': 'chromeos/cryptohome', 677 'proto_out_dir': 'chromeos/cryptohome',
676 }, 678 },
677 'includes': ['../build/protoc.gypi'], 679 'includes': ['../build/protoc.gypi'],
678 }, 680 },
679 ], 681 ],
680 } 682 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698