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 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1561 "//components/url_matcher", | 1561 "//components/url_matcher", |
1562 "//components/user_prefs", | 1562 "//components/user_prefs", |
1563 "//components/variations", | 1563 "//components/variations", |
1564 "//components/variations/field_trial_config", | 1564 "//components/variations/field_trial_config", |
1565 "//components/variations/net", | 1565 "//components/variations/net", |
1566 "//components/variations/service", | 1566 "//components/variations/service", |
1567 "//components/visitedlink/browser", | 1567 "//components/visitedlink/browser", |
1568 "//components/visitedlink/common", | 1568 "//components/visitedlink/common", |
1569 "//components/web_cache/browser", | 1569 "//components/web_cache/browser", |
1570 "//components/web_resource", | 1570 "//components/web_resource", |
| 1571 "//components/webauth:webauth", |
1571 "//components/webdata/common", | 1572 "//components/webdata/common", |
1572 "//components/webdata_services", | 1573 "//components/webdata_services", |
1573 "//components/zoom", | 1574 "//components/zoom", |
1574 "//content/app/resources", | 1575 "//content/app/resources", |
1575 "//content/public/browser", | 1576 "//content/public/browser", |
1576 "//content/public/common", | 1577 "//content/public/common", |
1577 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 1578 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
1578 "//content/public/common:features", | 1579 "//content/public/common:features", |
1579 "//content/public/common:service_names", | 1580 "//content/public/common:service_names", |
1580 "//courgette:courgette_lib", | 1581 "//courgette:courgette_lib", |
(...skipping 2131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3712 if (is_linux || is_win || is_mac) { | 3713 if (is_linux || is_win || is_mac) { |
3713 sources += [ | 3714 sources += [ |
3714 "payments/chrome_payment_request_delegate.cc", | 3715 "payments/chrome_payment_request_delegate.cc", |
3715 "payments/chrome_payment_request_delegate.h", | 3716 "payments/chrome_payment_request_delegate.h", |
3716 "payments/payment_request_factory.cc", | 3717 "payments/payment_request_factory.cc", |
3717 "payments/payment_request_factory.h", | 3718 "payments/payment_request_factory.h", |
3718 ] | 3719 ] |
3719 deps += [ "//components/payments/content" ] | 3720 deps += [ "//components/payments/content" ] |
3720 } | 3721 } |
3721 | 3722 |
| 3723 if (is_linux || is_win || is_mac) { |
| 3724 sources += [ |
| 3725 "webauth/authenticator_web_contents_manager.cc", |
| 3726 "webauth/authenticator_web_contents_manager.h", |
| 3727 ] |
| 3728 deps += [ "//components/webauth:authenticator" ] |
| 3729 } |
| 3730 |
3722 if (is_linux || is_win) { | 3731 if (is_linux || is_win) { |
3723 sources += [ | 3732 sources += [ |
3724 "renderer_context_menu/spelling_options_submenu_observer.cc", | 3733 "renderer_context_menu/spelling_options_submenu_observer.cc", |
3725 "renderer_context_menu/spelling_options_submenu_observer.h", | 3734 "renderer_context_menu/spelling_options_submenu_observer.h", |
3726 "webshare/share_service_impl.cc", | 3735 "webshare/share_service_impl.cc", |
3727 "webshare/share_service_impl.h", | 3736 "webshare/share_service_impl.h", |
3728 ] | 3737 ] |
3729 } | 3738 } |
3730 | 3739 |
3731 if (is_desktop_linux) { | 3740 if (is_desktop_linux) { |
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4662 "media/pepper_cdm_test_constants.cc", | 4671 "media/pepper_cdm_test_constants.cc", |
4663 "media/pepper_cdm_test_constants.h", | 4672 "media/pepper_cdm_test_constants.h", |
4664 ] | 4673 ] |
4665 } | 4674 } |
4666 } | 4675 } |
4667 | 4676 |
4668 service_manifest("preferences_forwarder_manifest") { | 4677 service_manifest("preferences_forwarder_manifest") { |
4669 name = "preferences_forwarder" | 4678 name = "preferences_forwarder" |
4670 source = "prefs/forwarder_manifest.json" | 4679 source = "prefs/forwarder_manifest.json" |
4671 } | 4680 } |
OLD | NEW |