| 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 2095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2106 "webui/settings/certificates_handler.cc", | 2106 "webui/settings/certificates_handler.cc", |
| 2107 "webui/settings/certificates_handler.h", | 2107 "webui/settings/certificates_handler.h", |
| 2108 ] | 2108 ] |
| 2109 } | 2109 } |
| 2110 if (is_mac || is_win) { | 2110 if (is_mac || is_win) { |
| 2111 sources += [ | 2111 sources += [ |
| 2112 "webui/settings/native_certificates_handler.cc", | 2112 "webui/settings/native_certificates_handler.cc", |
| 2113 "webui/settings/native_certificates_handler.h", | 2113 "webui/settings/native_certificates_handler.h", |
| 2114 ] | 2114 ] |
| 2115 } | 2115 } |
| 2116 if (is_win || is_linux) { |
| 2117 deps += [ "//components/payments:payment_request_impl" ] |
| 2118 } |
| 2116 if (enable_print_preview) { | 2119 if (enable_print_preview) { |
| 2117 sources += [ | 2120 sources += [ |
| 2118 "webui/print_preview/extension_printer_handler.cc", | 2121 "webui/print_preview/extension_printer_handler.cc", |
| 2119 "webui/print_preview/extension_printer_handler.h", | 2122 "webui/print_preview/extension_printer_handler.h", |
| 2120 "webui/print_preview/print_preview_handler.cc", | 2123 "webui/print_preview/print_preview_handler.cc", |
| 2121 "webui/print_preview/print_preview_handler.h", | 2124 "webui/print_preview/print_preview_handler.h", |
| 2122 "webui/print_preview/print_preview_ui.cc", | 2125 "webui/print_preview/print_preview_ui.cc", |
| 2123 "webui/print_preview/print_preview_ui.h", | 2126 "webui/print_preview/print_preview_ui.h", |
| 2124 "webui/print_preview/printer_backend_proxy.h", | 2127 "webui/print_preview/printer_backend_proxy.h", |
| 2125 "webui/print_preview/printer_capabilities.cc", | 2128 "webui/print_preview/printer_capabilities.cc", |
| (...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3473 "test/test_confirm_bubble_model.cc", | 3476 "test/test_confirm_bubble_model.cc", |
| 3474 "test/test_confirm_bubble_model.h", | 3477 "test/test_confirm_bubble_model.h", |
| 3475 ] | 3478 ] |
| 3476 deps += [ "//chrome/test:test_support_ui" ] | 3479 deps += [ "//chrome/test:test_support_ui" ] |
| 3477 } | 3480 } |
| 3478 | 3481 |
| 3479 if (enable_extensions) { | 3482 if (enable_extensions) { |
| 3480 deps += [ "//extensions/browser" ] | 3483 deps += [ "//extensions/browser" ] |
| 3481 } | 3484 } |
| 3482 } | 3485 } |
| OLD | NEW |