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

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: Added cert_database namespace. 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 }, 8 },
9 'includes': [ 9 'includes': [
10 'chromeos_tools.gypi' 10 'chromeos_tools.gypi'
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'chromeos', 14 'target_name': 'chromeos',
15 'type': '<(component)', 15 'type': '<(component)',
16 'dependencies': [ 16 'dependencies': [
17 '../base/base.gyp:base', 17 '../base/base.gyp:base',
18 '../base/base.gyp:base_prefs', 18 '../base/base.gyp:base_prefs',
19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
20 '../build/linux/system.gyp:dbus', 20 '../build/linux/system.gyp:dbus',
21 '../build/linux/system.gyp:ssl', 21 '../build/linux/system.gyp:ssl',
22 '../components/components.gyp:cert_database',
22 '../components/components.gyp:cloud_policy_proto', 23 '../components/components.gyp:cloud_policy_proto',
23 '../components/components.gyp:onc_component', 24 '../components/components.gyp:onc_component',
24 '../crypto/crypto.gyp:crypto', 25 '../crypto/crypto.gyp:crypto',
25 '../dbus/dbus.gyp:dbus', 26 '../dbus/dbus.gyp:dbus',
26 '../google_apis/google_apis.gyp:google_apis', 27 '../google_apis/google_apis.gyp:google_apis',
27 '../net/net.gyp:net', 28 '../net/net.gyp:net',
28 '../third_party/icu/icu.gyp:icui18n', 29 '../third_party/icu/icu.gyp:icui18n',
29 '../third_party/libxml/libxml.gyp:libxml', 30 '../third_party/libxml/libxml.gyp:libxml',
30 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 31 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
31 '../ui/accelerometer/ui_accelerometer.gyp:ui_accelerometer', 32 '../ui/accelerometer/ui_accelerometer.gyp:ui_accelerometer',
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 ], 519 ],
519 }, 520 },
520 { 521 {
521 'target_name': 'chromeos_unittests', 522 'target_name': 'chromeos_unittests',
522 'type': 'executable', 523 'type': 'executable',
523 'dependencies': [ 524 'dependencies': [
524 '../base/base.gyp:run_all_unittests', 525 '../base/base.gyp:run_all_unittests',
525 '../base/base.gyp:test_support_base', 526 '../base/base.gyp:test_support_base',
526 '../build/linux/system.gyp:dbus', 527 '../build/linux/system.gyp:dbus',
527 '../build/linux/system.gyp:ssl', 528 '../build/linux/system.gyp:ssl',
529 '../components/components.gyp:cert_database',
528 '../components/components.gyp:onc_component', 530 '../components/components.gyp:onc_component',
529 '../content/content_shell_and_tests.gyp:test_support_content', 531 '../content/content_shell_and_tests.gyp:test_support_content',
530 '../crypto/crypto.gyp:crypto', 532 '../crypto/crypto.gyp:crypto',
531 '../crypto/crypto.gyp:crypto_test_support', 533 '../crypto/crypto.gyp:crypto_test_support',
532 '../dbus/dbus.gyp:dbus_test_support', 534 '../dbus/dbus.gyp:dbus_test_support',
533 '../google_apis/google_apis.gyp:google_apis', 535 '../google_apis/google_apis.gyp:google_apis',
534 '../net/net.gyp:net', 536 '../net/net.gyp:net',
535 '../net/net.gyp:net_test_support', 537 '../net/net.gyp:net_test_support',
536 '../testing/gmock.gyp:gmock', 538 '../testing/gmock.gyp:gmock',
537 '../testing/gtest.gyp:gtest', 539 '../testing/gtest.gyp:gtest',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 ], 659 ],
658 'variables': { 660 'variables': {
659 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 661 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
660 'proto_out_dir': 'chromeos/cryptohome', 662 'proto_out_dir': 'chromeos/cryptohome',
661 }, 663 },
662 'includes': ['../build/protoc.gypi'], 664 'includes': ['../build/protoc.gypi'],
663 }, 665 },
664 666
665 ], 667 ],
666 } 668 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698