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