Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 2645813006: Download web payment manifests. (Closed)
Patch Set: WIP Downloader tests - do not review Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2107 matching lines...) Expand 10 before | Expand all | Expand 10 after
2118 } 2118 }
2119 if (is_mac || is_win) { 2119 if (is_mac || is_win) {
2120 sources += [ 2120 sources += [
2121 "webui/settings/native_certificates_handler.cc", 2121 "webui/settings/native_certificates_handler.cc",
2122 "webui/settings/native_certificates_handler.h", 2122 "webui/settings/native_certificates_handler.h",
2123 ] 2123 ]
2124 } 2124 }
2125 if (is_win || is_linux) { 2125 if (is_win || is_linux) {
2126 deps += [ 2126 deps += [
2127 "//components/payments:payment_request_impl", 2127 "//components/payments:payment_request_impl",
2128 "//components/payments:payment_validation", 2128 "//components/payments:payment_utils",
2129 ] 2129 ]
2130 } 2130 }
2131 if (enable_print_preview) { 2131 if (enable_print_preview) {
2132 sources += [ 2132 sources += [
2133 "webui/print_preview/extension_printer_handler.cc", 2133 "webui/print_preview/extension_printer_handler.cc",
2134 "webui/print_preview/extension_printer_handler.h", 2134 "webui/print_preview/extension_printer_handler.h",
2135 "webui/print_preview/print_preview_handler.cc", 2135 "webui/print_preview/print_preview_handler.cc",
2136 "webui/print_preview/print_preview_handler.h", 2136 "webui/print_preview/print_preview_handler.h",
2137 "webui/print_preview/print_preview_ui.cc", 2137 "webui/print_preview/print_preview_ui.cc",
2138 "webui/print_preview/print_preview_ui.h", 2138 "webui/print_preview/print_preview_ui.h",
(...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after
3496 "test/test_confirm_bubble_model.cc", 3496 "test/test_confirm_bubble_model.cc",
3497 "test/test_confirm_bubble_model.h", 3497 "test/test_confirm_bubble_model.h",
3498 ] 3498 ]
3499 deps += [ "//chrome/test:test_support_ui" ] 3499 deps += [ "//chrome/test:test_support_ui" ]
3500 } 3500 }
3501 3501
3502 if (enable_extensions) { 3502 if (enable_extensions) {
3503 deps += [ "//extensions/browser" ] 3503 deps += [ "//extensions/browser" ]
3504 } 3504 }
3505 } 3505 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698