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 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1565 "//components/url_matcher", | 1565 "//components/url_matcher", |
1566 "//components/user_prefs", | 1566 "//components/user_prefs", |
1567 "//components/variations", | 1567 "//components/variations", |
1568 "//components/variations/field_trial_config", | 1568 "//components/variations/field_trial_config", |
1569 "//components/variations/net", | 1569 "//components/variations/net", |
1570 "//components/variations/service", | 1570 "//components/variations/service", |
1571 "//components/visitedlink/browser", | 1571 "//components/visitedlink/browser", |
1572 "//components/visitedlink/common", | 1572 "//components/visitedlink/common", |
1573 "//components/web_cache/browser", | 1573 "//components/web_cache/browser", |
1574 "//components/web_resource", | 1574 "//components/web_resource", |
| 1575 "//components/webauth:webauth", |
1575 "//components/webdata/common", | 1576 "//components/webdata/common", |
1576 "//components/webdata_services", | 1577 "//components/webdata_services", |
1577 "//components/zoom", | 1578 "//components/zoom", |
1578 "//content/app/resources", | 1579 "//content/app/resources", |
1579 "//content/public/browser", | 1580 "//content/public/browser", |
1580 "//content/public/common", | 1581 "//content/public/common", |
1581 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 1582 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
1582 "//content/public/common:features", | 1583 "//content/public/common:features", |
1583 "//content/public/common:service_names", | 1584 "//content/public/common:service_names", |
1584 "//courgette:courgette_lib", | 1585 "//courgette:courgette_lib", |
(...skipping 2137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3722 if (is_linux || is_win || is_mac) { | 3723 if (is_linux || is_win || is_mac) { |
3723 sources += [ | 3724 sources += [ |
3724 "payments/chrome_payment_request_delegate.cc", | 3725 "payments/chrome_payment_request_delegate.cc", |
3725 "payments/chrome_payment_request_delegate.h", | 3726 "payments/chrome_payment_request_delegate.h", |
3726 "payments/payment_request_factory.cc", | 3727 "payments/payment_request_factory.cc", |
3727 "payments/payment_request_factory.h", | 3728 "payments/payment_request_factory.h", |
3728 ] | 3729 ] |
3729 deps += [ "//components/payments/content" ] | 3730 deps += [ "//components/payments/content" ] |
3730 } | 3731 } |
3731 | 3732 |
| 3733 if (is_linux || is_win || is_mac) { |
| 3734 sources += [ |
| 3735 "webauth/authenticator_web_contents_manager.cc", |
| 3736 "webauth/authenticator_web_contents_manager.h", |
| 3737 ] |
| 3738 deps += [ "//components/webauth:authenticator" ] |
| 3739 } |
| 3740 |
3732 if (is_linux || is_win) { | 3741 if (is_linux || is_win) { |
3733 sources += [ | 3742 sources += [ |
3734 "renderer_context_menu/spelling_options_submenu_observer.cc", | 3743 "renderer_context_menu/spelling_options_submenu_observer.cc", |
3735 "renderer_context_menu/spelling_options_submenu_observer.h", | 3744 "renderer_context_menu/spelling_options_submenu_observer.h", |
3736 "webshare/share_service_impl.cc", | 3745 "webshare/share_service_impl.cc", |
3737 "webshare/share_service_impl.h", | 3746 "webshare/share_service_impl.h", |
3738 ] | 3747 ] |
3739 } | 3748 } |
3740 | 3749 |
3741 if (is_desktop_linux) { | 3750 if (is_desktop_linux) { |
(...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4674 "media/pepper_cdm_test_constants.cc", | 4683 "media/pepper_cdm_test_constants.cc", |
4675 "media/pepper_cdm_test_constants.h", | 4684 "media/pepper_cdm_test_constants.h", |
4676 ] | 4685 ] |
4677 } | 4686 } |
4678 } | 4687 } |
4679 | 4688 |
4680 service_manifest("preferences_forwarder_manifest") { | 4689 service_manifest("preferences_forwarder_manifest") { |
4681 name = "preferences_forwarder" | 4690 name = "preferences_forwarder" |
4682 source = "prefs/forwarder_manifest.json" | 4691 source = "prefs/forwarder_manifest.json" |
4683 } | 4692 } |
OLD | NEW |