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

Side by Side Diff: chrome/chrome_common.gypi

Issue 570253002: Componentize NetErrorHelperCore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Win64 Created 6 years, 3 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) 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 'variables': { 6 'variables': {
7 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 '../apps/app_shim/app_shim_launch.h', 9 '../apps/app_shim/app_shim_launch.h',
10 '../apps/app_shim/app_shim_messages.h', 10 '../apps/app_shim/app_shim_messages.h',
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 }, 589 },
590 ], 590 ],
591 }], 591 }],
592 ], 592 ],
593 }, 593 },
594 { 594 {
595 # GN version: //chrome/common/net 595 # GN version: //chrome/common/net
596 'target_name': 'common_net', 596 'target_name': 'common_net',
597 'type': 'static_library', 597 'type': 'static_library',
598 'sources': [ 598 'sources': [
599 'common/net/net_error_info.cc',
600 'common/net/net_error_info.h',
601 'common/net/net_resource_provider.cc', 599 'common/net/net_resource_provider.cc',
602 'common/net/net_resource_provider.h', 600 'common/net/net_resource_provider.h',
603 'common/net/predictor_common.h', 601 'common/net/predictor_common.h',
604 'common/net/url_util.cc', 602 'common/net/url_util.cc',
605 'common/net/url_util.h', 603 'common/net/url_util.h',
606 'common/net/x509_certificate_model.cc', 604 'common/net/x509_certificate_model.cc',
607 'common/net/x509_certificate_model_nss.cc', 605 'common/net/x509_certificate_model_nss.cc',
608 'common/net/x509_certificate_model_openssl.cc', 606 'common/net/x509_certificate_model_openssl.cc',
609 'common/net/x509_certificate_model.h', 607 'common/net/x509_certificate_model.h',
610 ], 608 ],
611 'dependencies': [ 609 'dependencies': [
612 '<(DEPTH)/base/base.gyp:base', 610 '<(DEPTH)/base/base.gyp:base',
613 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 611 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
614 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 612 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
613 '<(DEPTH)/components/components.gyp:error_page_common',
615 '<(DEPTH)/crypto/crypto.gyp:crypto', 614 '<(DEPTH)/crypto/crypto.gyp:crypto',
616 '<(DEPTH)/net/net.gyp:net_resources', 615 '<(DEPTH)/net/net.gyp:net_resources',
617 '<(DEPTH)/net/net.gyp:net', 616 '<(DEPTH)/net/net.gyp:net',
618 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 617 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
619 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 618 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
620 ], 619 ],
621 'conditions': [ 620 'conditions': [
622 ['OS != "ios"', { 621 ['OS != "ios"', {
623 'dependencies': [ 622 'dependencies': [
624 '<(DEPTH)/gpu/gpu.gyp:gpu_ipc', 623 '<(DEPTH)/gpu/gpu.gyp:gpu_ipc',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 'common/safe_browsing/csd.proto' 685 'common/safe_browsing/csd.proto'
687 ], 686 ],
688 'variables': { 687 'variables': {
689 'proto_in_dir': 'common/safe_browsing', 688 'proto_in_dir': 'common/safe_browsing',
690 'proto_out_dir': 'chrome/common/safe_browsing', 689 'proto_out_dir': 'chrome/common/safe_browsing',
691 }, 690 },
692 'includes': [ '../build/protoc.gypi' ], 691 'includes': [ '../build/protoc.gypi' ],
693 }, 692 },
694 ], 693 ],
695 } 694 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698