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

Side by Side Diff: chrome/chrome_common.gypi

Issue 102993002: Implement Networking Private API VerifyAndEncryptCredentials method (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: EnsureInitialized in WiFiService SetEventObservers. Created 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/chrome_tests_unit.gypi » ('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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 24 matching lines...) Expand all
35 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 35 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
36 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 36 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
37 '<(DEPTH)/chrome/chrome_resources.gyp:theme_resources', 37 '<(DEPTH)/chrome/chrome_resources.gyp:theme_resources',
38 '<(DEPTH)/chrome/common_constants.gyp:common_constants', 38 '<(DEPTH)/chrome/common_constants.gyp:common_constants',
39 '<(DEPTH)/components/components.gyp:json_schema', 39 '<(DEPTH)/components/components.gyp:json_schema',
40 '<(DEPTH)/components/components.gyp:metrics', 40 '<(DEPTH)/components/components.gyp:metrics',
41 '<(DEPTH)/components/components.gyp:policy_component_common', 41 '<(DEPTH)/components/components.gyp:policy_component_common',
42 '<(DEPTH)/components/components.gyp:translate_core_common', 42 '<(DEPTH)/components/components.gyp:translate_core_common',
43 '<(DEPTH)/components/components.gyp:variations', 43 '<(DEPTH)/components/components.gyp:variations',
44 '<(DEPTH)/content/content.gyp:content_common', 44 '<(DEPTH)/content/content.gyp:content_common',
45 '<(DEPTH)/crypto/crypto.gyp:crypto',
45 '<(DEPTH)/net/net.gyp:net', 46 '<(DEPTH)/net/net.gyp:net',
46 '<(DEPTH)/skia/skia.gyp:skia', 47 '<(DEPTH)/skia/skia.gyp:skia',
47 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 48 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
48 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 49 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
49 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 50 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
50 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 51 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
51 '<(DEPTH)/third_party/zlib/google/zip.gyp:zip', 52 '<(DEPTH)/third_party/zlib/google/zip.gyp:zip',
52 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', 53 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources',
53 '<(DEPTH)/url/url.gyp:url_lib', 54 '<(DEPTH)/url/url.gyp:url_lib',
54 ], 55 ],
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 ['include', 'common/extensions/api/managed_mode_private/managed_mode _handler.cc'], 391 ['include', 'common/extensions/api/managed_mode_private/managed_mode _handler.cc'],
391 ['include', 'common/extensions/api/managed_mode_private/managed_mode _handler.h'], 392 ['include', 'common/extensions/api/managed_mode_private/managed_mode _handler.h'],
392 ['include', 'common/extensions/api/plugins/plugins_handler.cc'], 393 ['include', 'common/extensions/api/plugins/plugins_handler.cc'],
393 ['include', 'common/extensions/api/plugins/plugins_handler.h'], 394 ['include', 'common/extensions/api/plugins/plugins_handler.h'],
394 ['include', 'common/extensions/api/storage/storage_schema_manifest_h andler.cc'], 395 ['include', 'common/extensions/api/storage/storage_schema_manifest_h andler.cc'],
395 ['include', 'common/extensions/api/storage/storage_schema_manifest_h andler.h'], 396 ['include', 'common/extensions/api/storage/storage_schema_manifest_h andler.h'],
396 ], 397 ],
397 }], 398 }],
398 ['OS=="win" or OS=="mac"', { 399 ['OS=="win" or OS=="mac"', {
399 'sources': [ 400 'sources': [
401 'common/extensions/api/networking_private/networking_private_crypto. cc',
402 'common/extensions/api/networking_private/networking_private_crypto. h',
400 'common/media_galleries/itunes_library.cc', 403 'common/media_galleries/itunes_library.cc',
401 'common/media_galleries/itunes_library.h', 404 'common/media_galleries/itunes_library.h',
402 'common/media_galleries/picasa_types.cc', 405 'common/media_galleries/picasa_types.cc',
403 'common/media_galleries/picasa_types.h', 406 'common/media_galleries/picasa_types.h',
404 'common/media_galleries/pmp_constants.h', 407 'common/media_galleries/pmp_constants.h',
405 ], 408 ],
406 }], 409 }],
407 ['OS=="mac"', { 410 ['OS=="mac"', {
408 'sources': [ 411 'sources': [
409 'common/media_galleries/iphoto_library.cc', 412 'common/media_galleries/iphoto_library.cc',
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 ['OS == "android"', { 684 ['OS == "android"', {
682 'dependencies': [ 685 'dependencies': [
683 '../third_party/openssl/openssl.gyp:openssl', 686 '../third_party/openssl/openssl.gyp:openssl',
684 ], 687 ],
685 'sources!': [ 688 'sources!': [
686 'common/net/x509_certificate_model.cc', 689 'common/net/x509_certificate_model.cc',
687 ], 690 ],
688 }], 691 }],
689 ['use_openssl==1', { 692 ['use_openssl==1', {
690 'sources!': [ 693 'sources!': [
694 # networking_private_crypto.cc uses NSS functions.
695 'common/extensions/api/networking_private/networking_private_crypt o.cc',
691 'common/net/x509_certificate_model_nss.cc', 696 'common/net/x509_certificate_model_nss.cc',
692 ], 697 ],
693 }, 698 },
694 { # else !use_openssl: remove the unneeded files 699 { # else !use_openssl: remove the unneeded files
695 'sources!': [ 700 'sources!': [
696 'common/net/x509_certificate_model_openssl.cc', 701 'common/net/x509_certificate_model_openssl.cc',
697 ], 702 ],
698 }, 703 },
699 ], 704 ],
700 ['OS=="win"', { 705 ['OS=="win"', {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 'common/metrics/proto/user_action_event.proto', 742 'common/metrics/proto/user_action_event.proto',
738 ], 743 ],
739 'variables': { 744 'variables': {
740 'proto_in_dir': 'common/metrics/proto', 745 'proto_in_dir': 'common/metrics/proto',
741 'proto_out_dir': 'chrome/common/metrics/proto', 746 'proto_out_dir': 'chrome/common/metrics/proto',
742 }, 747 },
743 'includes': [ '../build/protoc.gypi' ], 748 'includes': [ '../build/protoc.gypi' ],
744 }, 749 },
745 ], 750 ],
746 } 751 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698