| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 1603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1614 "//components/url_matcher", | 1614 "//components/url_matcher", |
| 1615 "//components/user_prefs", | 1615 "//components/user_prefs", |
| 1616 "//components/variations", | 1616 "//components/variations", |
| 1617 "//components/variations/field_trial_config", | 1617 "//components/variations/field_trial_config", |
| 1618 "//components/variations/net", | 1618 "//components/variations/net", |
| 1619 "//components/variations/service", | 1619 "//components/variations/service", |
| 1620 "//components/visitedlink/browser", | 1620 "//components/visitedlink/browser", |
| 1621 "//components/visitedlink/common", | 1621 "//components/visitedlink/common", |
| 1622 "//components/web_cache/browser", | 1622 "//components/web_cache/browser", |
| 1623 "//components/web_resource", | 1623 "//components/web_resource", |
| 1624 "//components/webauth:webauth", |
| 1624 "//components/webdata/common", | 1625 "//components/webdata/common", |
| 1625 "//components/webdata_services", | 1626 "//components/webdata_services", |
| 1626 "//content/app/resources", | 1627 "//content/app/resources", |
| 1627 "//content/public/browser", | 1628 "//content/public/browser", |
| 1628 "//content/public/common", | 1629 "//content/public/common", |
| 1629 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 1630 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
| 1630 "//content/public/common:features", | 1631 "//content/public/common:features", |
| 1631 "//content/public/common:service_names", | 1632 "//content/public/common:service_names", |
| 1632 "//courgette:courgette_lib", | 1633 "//courgette:courgette_lib", |
| 1633 "//crypto", | 1634 "//crypto", |
| (...skipping 2187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3821 if (is_linux || is_win || is_mac) { | 3822 if (is_linux || is_win || is_mac) { |
| 3822 sources += [ | 3823 sources += [ |
| 3823 "payments/chrome_payment_request_delegate.cc", | 3824 "payments/chrome_payment_request_delegate.cc", |
| 3824 "payments/chrome_payment_request_delegate.h", | 3825 "payments/chrome_payment_request_delegate.h", |
| 3825 "payments/payment_request_factory.cc", | 3826 "payments/payment_request_factory.cc", |
| 3826 "payments/payment_request_factory.h", | 3827 "payments/payment_request_factory.h", |
| 3827 ] | 3828 ] |
| 3828 deps += [ "//components/payments/content" ] | 3829 deps += [ "//components/payments/content" ] |
| 3829 } | 3830 } |
| 3830 | 3831 |
| 3832 if (is_linux || is_win || is_mac) { |
| 3833 sources += [ |
| 3834 "webauth/authenticator_web_contents_manager.cc", |
| 3835 "webauth/authenticator_web_contents_manager.h", |
| 3836 ] |
| 3837 deps += [ "//components/webauth:authenticator" ] |
| 3838 } |
| 3839 |
| 3831 if (is_linux || is_win) { | 3840 if (is_linux || is_win) { |
| 3832 sources += [ | 3841 sources += [ |
| 3833 "renderer_context_menu/spelling_options_submenu_observer.cc", | 3842 "renderer_context_menu/spelling_options_submenu_observer.cc", |
| 3834 "renderer_context_menu/spelling_options_submenu_observer.h", | 3843 "renderer_context_menu/spelling_options_submenu_observer.h", |
| 3835 "webshare/share_service_impl.cc", | 3844 "webshare/share_service_impl.cc", |
| 3836 "webshare/share_service_impl.h", | 3845 "webshare/share_service_impl.h", |
| 3837 ] | 3846 ] |
| 3838 } | 3847 } |
| 3839 | 3848 |
| 3840 if (is_desktop_linux) { | 3849 if (is_desktop_linux) { |
| (...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4769 "media/pepper_cdm_test_constants.cc", | 4778 "media/pepper_cdm_test_constants.cc", |
| 4770 "media/pepper_cdm_test_constants.h", | 4779 "media/pepper_cdm_test_constants.h", |
| 4771 ] | 4780 ] |
| 4772 } | 4781 } |
| 4773 } | 4782 } |
| 4774 | 4783 |
| 4775 service_manifest("preferences_forwarder_manifest") { | 4784 service_manifest("preferences_forwarder_manifest") { |
| 4776 name = "preferences_forwarder" | 4785 name = "preferences_forwarder" |
| 4777 source = "prefs/forwarder_manifest.json" | 4786 source = "prefs/forwarder_manifest.json" |
| 4778 } | 4787 } |
| OLD | NEW |