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/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 4773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4784 if (toolkit_views) { | 4784 if (toolkit_views) { |
4785 deps += [ | 4785 deps += [ |
4786 "//components/web_modal:test_support", | 4786 "//components/web_modal:test_support", |
4787 "//ui/views", | 4787 "//ui/views", |
4788 "//ui/views:test_support", | 4788 "//ui/views:test_support", |
4789 ] | 4789 ] |
4790 sources += [ | 4790 sources += [ |
4791 "../../ui/views/controls/webview/webview_unittest.cc", | 4791 "../../ui/views/controls/webview/webview_unittest.cc", |
4792 "../browser/ui/views/apps/app_info_dialog/app_info_dialog_views_unittest.c c", | 4792 "../browser/ui/views/apps/app_info_dialog/app_info_dialog_views_unittest.c c", |
4793 "../browser/ui/views/apps/app_info_dialog/app_info_permissions_panel_unitt est.cc", | 4793 "../browser/ui/views/apps/app_info_dialog/app_info_permissions_panel_unitt est.cc", |
4794 "../browser/ui/views/ime_driver/input_method_bridge_chromeos_unittest.cc", | |
sky
2016/12/12 02:16:21
Shouldn't this only be inclined on chromeos?
Hadi
2016/12/12 16:04:58
Done.
| |
4794 "../browser/ui/views/website_settings/website_settings_popup_view_unittest .cc", | 4795 "../browser/ui/views/website_settings/website_settings_popup_view_unittest .cc", |
4795 ] | 4796 ] |
4796 if (!is_chromeos && (!is_mac || mac_views_browser)) { | 4797 if (!is_chromeos && (!is_mac || mac_views_browser)) { |
4797 sources += [ | 4798 sources += [ |
4798 "../browser/ui/views/frame/opaque_browser_frame_view_layout_unittest.cc" , | 4799 "../browser/ui/views/frame/opaque_browser_frame_view_layout_unittest.cc" , |
4799 "../browser/ui/views/sync/one_click_signin_dialog_view_unittest.cc", | 4800 "../browser/ui/views/sync/one_click_signin_dialog_view_unittest.cc", |
4800 ] | 4801 ] |
4801 } | 4802 } |
4802 if (!is_mac || mac_views_browser) { | 4803 if (!is_mac || mac_views_browser) { |
4803 sources += [ | 4804 sources += [ |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5150 } | 5151 } |
5151 | 5152 |
5152 if (is_win) { | 5153 if (is_win) { |
5153 loadable_module("conflicts_dll") { | 5154 loadable_module("conflicts_dll") { |
5154 testonly = true | 5155 testonly = true |
5155 sources = [ | 5156 sources = [ |
5156 "conflicts/conflicts_dll.cc", | 5157 "conflicts/conflicts_dll.cc", |
5157 ] | 5158 ] |
5158 } | 5159 } |
5159 } | 5160 } |
OLD | NEW |