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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_error_info.cc', | 593 'common/net/net_error_info.cc', |
594 'common/net/net_error_info.h', | 594 'common/net/net_error_info.h', |
595 'common/net/net_resource_provider.cc', | 595 'common/net/net_resource_provider.cc', |
596 'common/net/net_resource_provider.h', | 596 'common/net/net_resource_provider.h', |
597 'common/net/predictor_common.h', | |
598 'common/net/url_util.cc', | 597 'common/net/url_util.cc', |
599 'common/net/url_util.h', | 598 'common/net/url_util.h', |
600 'common/net/x509_certificate_model.cc', | 599 'common/net/x509_certificate_model.cc', |
601 'common/net/x509_certificate_model_nss.cc', | 600 'common/net/x509_certificate_model_nss.cc', |
602 'common/net/x509_certificate_model_openssl.cc', | 601 'common/net/x509_certificate_model_openssl.cc', |
603 'common/net/x509_certificate_model.h', | 602 'common/net/x509_certificate_model.h', |
604 ], | 603 ], |
605 'dependencies': [ | 604 'dependencies': [ |
606 '<(DEPTH)/base/base.gyp:base', | 605 '<(DEPTH)/base/base.gyp:base', |
607 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 606 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
608 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 607 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 608 '<(DEPTH)/components/components.gyp:predictor_common', |
609 '<(DEPTH)/crypto/crypto.gyp:crypto', | 609 '<(DEPTH)/crypto/crypto.gyp:crypto', |
610 '<(DEPTH)/net/net.gyp:net_resources', | 610 '<(DEPTH)/net/net.gyp:net_resources', |
611 '<(DEPTH)/net/net.gyp:net', | 611 '<(DEPTH)/net/net.gyp:net', |
612 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 612 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
613 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 613 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
614 ], | 614 ], |
615 'conditions': [ | 615 'conditions': [ |
616 ['OS != "ios"', { | 616 ['OS != "ios"', { |
617 'dependencies': [ | 617 'dependencies': [ |
618 '<(DEPTH)/gpu/gpu.gyp:gpu_ipc', | 618 '<(DEPTH)/gpu/gpu.gyp:gpu_ipc', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 'common/safe_browsing/csd.proto' | 680 'common/safe_browsing/csd.proto' |
681 ], | 681 ], |
682 'variables': { | 682 'variables': { |
683 'proto_in_dir': 'common/safe_browsing', | 683 'proto_in_dir': 'common/safe_browsing', |
684 'proto_out_dir': 'chrome/common/safe_browsing', | 684 'proto_out_dir': 'chrome/common/safe_browsing', |
685 }, | 685 }, |
686 'includes': [ '../build/protoc.gypi' ], | 686 'includes': [ '../build/protoc.gypi' ], |
687 }, | 687 }, |
688 ], | 688 ], |
689 } | 689 } |
OLD | NEW |