OLD | NEW |
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 'common/all_messages.h', | 9 'common/all_messages.h', |
10 'common/attrition_experiments.h', | 10 'common/attrition_experiments.h', |
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 }, | 585 }, |
586 ], | 586 ], |
587 }, | 587 }, |
588 { | 588 { |
589 # GN version: //chrome/common/net | 589 # GN version: //chrome/common/net |
590 'target_name': 'common_net', | 590 'target_name': 'common_net', |
591 'type': 'static_library', | 591 'type': 'static_library', |
592 'sources': [ | 592 'sources': [ |
593 'common/net/net_resource_provider.cc', | 593 'common/net/net_resource_provider.cc', |
594 'common/net/net_resource_provider.h', | 594 'common/net/net_resource_provider.h', |
595 'common/net/predictor_common.h', | |
596 'common/net/url_util.cc', | 595 'common/net/url_util.cc', |
597 'common/net/url_util.h', | 596 'common/net/url_util.h', |
598 'common/net/x509_certificate_model.cc', | 597 'common/net/x509_certificate_model.cc', |
599 'common/net/x509_certificate_model_nss.cc', | 598 'common/net/x509_certificate_model_nss.cc', |
600 'common/net/x509_certificate_model_openssl.cc', | 599 'common/net/x509_certificate_model_openssl.cc', |
601 'common/net/x509_certificate_model.h', | 600 'common/net/x509_certificate_model.h', |
602 ], | 601 ], |
603 'dependencies': [ | 602 'dependencies': [ |
604 '<(DEPTH)/base/base.gyp:base', | 603 '<(DEPTH)/base/base.gyp:base', |
605 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 604 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
606 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 605 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 606 '<(DEPTH)/components/components.gyp:dns_prefetch_common', |
607 '<(DEPTH)/components/components.gyp:error_page_common', | 607 '<(DEPTH)/components/components.gyp:error_page_common', |
608 '<(DEPTH)/crypto/crypto.gyp:crypto', | 608 '<(DEPTH)/crypto/crypto.gyp:crypto', |
609 '<(DEPTH)/net/net.gyp:net_resources', | 609 '<(DEPTH)/net/net.gyp:net_resources', |
610 '<(DEPTH)/net/net.gyp:net', | 610 '<(DEPTH)/net/net.gyp:net', |
611 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 611 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
612 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 612 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
613 ], | 613 ], |
614 'conditions': [ | 614 'conditions': [ |
615 ['OS != "ios"', { | 615 ['OS != "ios"', { |
616 'dependencies': [ | 616 'dependencies': [ |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 'common/safe_browsing/csd.proto' | 679 'common/safe_browsing/csd.proto' |
680 ], | 680 ], |
681 'variables': { | 681 'variables': { |
682 'proto_in_dir': 'common/safe_browsing', | 682 'proto_in_dir': 'common/safe_browsing', |
683 'proto_out_dir': 'chrome/common/safe_browsing', | 683 'proto_out_dir': 'chrome/common/safe_browsing', |
684 }, | 684 }, |
685 'includes': [ '../build/protoc.gypi' ], | 685 'includes': [ '../build/protoc.gypi' ], |
686 }, | 686 }, |
687 ], | 687 ], |
688 } | 688 } |
OLD | NEW |