| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_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 2102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2113 "webui/settings/certificates_handler.h", | 2113 "webui/settings/certificates_handler.h", |
| 2114 ] | 2114 ] |
| 2115 } | 2115 } |
| 2116 if (is_mac || is_win) { | 2116 if (is_mac || is_win) { |
| 2117 sources += [ | 2117 sources += [ |
| 2118 "webui/settings/native_certificates_handler.cc", | 2118 "webui/settings/native_certificates_handler.cc", |
| 2119 "webui/settings/native_certificates_handler.h", | 2119 "webui/settings/native_certificates_handler.h", |
| 2120 ] | 2120 ] |
| 2121 } | 2121 } |
| 2122 if (is_win || is_linux) { | 2122 if (is_win || is_linux) { |
| 2123 deps += [ "//components/payments:payment_request_impl" ] | 2123 deps += [ |
| 2124 "//components/payments:payment_request_impl", |
| 2125 "//components/payments:payment_validation", |
| 2126 ] |
| 2124 } | 2127 } |
| 2125 if (enable_print_preview) { | 2128 if (enable_print_preview) { |
| 2126 sources += [ | 2129 sources += [ |
| 2127 "webui/print_preview/extension_printer_handler.cc", | 2130 "webui/print_preview/extension_printer_handler.cc", |
| 2128 "webui/print_preview/extension_printer_handler.h", | 2131 "webui/print_preview/extension_printer_handler.h", |
| 2129 "webui/print_preview/print_preview_handler.cc", | 2132 "webui/print_preview/print_preview_handler.cc", |
| 2130 "webui/print_preview/print_preview_handler.h", | 2133 "webui/print_preview/print_preview_handler.h", |
| 2131 "webui/print_preview/print_preview_ui.cc", | 2134 "webui/print_preview/print_preview_ui.cc", |
| 2132 "webui/print_preview/print_preview_ui.h", | 2135 "webui/print_preview/print_preview_ui.h", |
| 2133 "webui/print_preview/printer_backend_proxy.h", | 2136 "webui/print_preview/printer_backend_proxy.h", |
| (...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3485 "test/test_confirm_bubble_model.cc", | 3488 "test/test_confirm_bubble_model.cc", |
| 3486 "test/test_confirm_bubble_model.h", | 3489 "test/test_confirm_bubble_model.h", |
| 3487 ] | 3490 ] |
| 3488 deps += [ "//chrome/test:test_support_ui" ] | 3491 deps += [ "//chrome/test:test_support_ui" ] |
| 3489 } | 3492 } |
| 3490 | 3493 |
| 3491 if (enable_extensions) { | 3494 if (enable_extensions) { |
| 3492 deps += [ "//extensions/browser" ] | 3495 deps += [ "//extensions/browser" ] |
| 3493 } | 3496 } |
| 3494 } | 3497 } |
| OLD | NEW |