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

Side by Side Diff: chrome/test/BUILD.gn

Issue 2610793002: Add a browser test for the views external protocol dialog. (Closed)
Patch Set: Address comments 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.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
2113 } 2113 }
2114 if (toolkit_views) { 2114 if (toolkit_views) {
2115 sources += [ 2115 sources += [
2116 "../browser/ui/global_error/global_error_service_browsertest.cc", 2116 "../browser/ui/global_error/global_error_service_browsertest.cc",
2117 "../browser/ui/views/frame/browser_non_client_frame_view_browsertest_win .cc", 2117 "../browser/ui/views/frame/browser_non_client_frame_view_browsertest_win .cc",
2118 "../browser/ui/views/frame/browser_window_property_manager_browsertest_w in.cc", 2118 "../browser/ui/views/frame/browser_window_property_manager_browsertest_w in.cc",
2119 "../browser/ui/views/select_file_dialog_extension_browsertest.cc", 2119 "../browser/ui/views/select_file_dialog_extension_browsertest.cc",
2120 ] 2120 ]
2121 deps += [ "//ui/views" ] 2121 deps += [ "//ui/views" ]
2122 if (!is_chromeos && (!is_mac || mac_views_browser)) { 2122 if (!is_chromeos && (!is_mac || mac_views_browser)) {
2123 sources += [ "../browser/ui/views/profiles/profile_chooser_view_browsert est.cc" ] 2123 sources += [
2124 "../browser/ui/views/external_protocol_dialog_browsertest.cc",
2125 "../browser/ui/views/profiles/profile_chooser_view_browsertest.cc",
2126 ]
2124 } 2127 }
2125 if (!is_mac || mac_views_browser) { 2128 if (!is_mac || mac_views_browser) {
2126 sources += [ 2129 sources += [
2127 # TODO(tapted): Move these to chrome_browser_tests_views_sources when the 2130 # TODO(tapted): Move these to chrome_browser_tests_views_sources when the
2128 # the corresponding files are moved in chrome_browser_ui.gypi (i.e. ou t of 2131 # the corresponding files are moved in chrome_browser_ui.gypi (i.e. ou t of
2129 # chrome_browser_ui_views_non_mac_sources). http://crbug.com/404979. 2132 # chrome_browser_ui_views_non_mac_sources). http://crbug.com/404979.
2130 "../browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc" , 2133 "../browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc" ,
2131 "../browser/ui/views/autofill/card_unmask_prompt_view_tester_views.cc" , 2134 "../browser/ui/views/autofill/card_unmask_prompt_view_tester_views.cc" ,
2132 "../browser/ui/views/autofill/card_unmask_prompt_view_tester_views.h", 2135 "../browser/ui/views/autofill/card_unmask_prompt_view_tester_views.h",
2133 "../browser/ui/views/autofill/password_generation_popup_view_tester_vi ews.cc", 2136 "../browser/ui/views/autofill/password_generation_popup_view_tester_vi ews.cc",
(...skipping 2965 matching lines...) Expand 10 before | Expand all | Expand 10 after
5099 } 5102 }
5100 5103
5101 if (is_win) { 5104 if (is_win) {
5102 loadable_module("conflicts_dll") { 5105 loadable_module("conflicts_dll") {
5103 testonly = true 5106 testonly = true
5104 sources = [ 5107 sources = [
5105 "conflicts/conflicts_dll.cc", 5108 "conflicts/conflicts_dll.cc",
5106 ] 5109 ]
5107 } 5110 }
5108 } 5111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698