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

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

Issue 2932563002: Implement cursor changing on Mushrome (Closed)
Patch Set: jamescook comments Created 3 years, 6 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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 # chrome_extensions_interactive_uitests target for more. 812 # chrome_extensions_interactive_uitests target for more.
813 deps += [ "//extensions:chrome_extensions_interactive_uitests" ] 813 deps += [ "//extensions:chrome_extensions_interactive_uitests" ]
814 } 814 }
815 815
816 if (use_ash) { 816 if (use_ash) {
817 sources += [ 817 sources += [
818 "../browser/ui/ash/app_list/app_list_interactive_uitest.cc", 818 "../browser/ui/ash/app_list/app_list_interactive_uitest.cc",
819 "../browser/ui/views/ash/tab_scrubber_browsertest.cc", 819 "../browser/ui/views/ash/tab_scrubber_browsertest.cc",
820 "../browser/ui/window_sizer/window_sizer_ash_uitest.cc", 820 "../browser/ui/window_sizer/window_sizer_ash_uitest.cc",
821 "//ash/drag_drop/drag_drop_interactive_uitest.cc", 821 "//ash/drag_drop/drag_drop_interactive_uitest.cc",
822 "//ash/wm/ash_native_cursor_manager_interactive_uitest.cc", 822 "//ash/wm/native_cursor_manager_ash_interactive_uitest.cc",
823 ] 823 ]
824 sources -= [ 824 sources -= [
825 # Use only the _chromeos version on Ash / Chrome OS. 825 # Use only the _chromeos version on Ash / Chrome OS.
826 "base/view_event_test_platform_part_default.cc", 826 "base/view_event_test_platform_part_default.cc",
827 ] 827 ]
828 deps += [ "//ash/test:interactive_ui_test_support" ] 828 deps += [ "//ash/test:interactive_ui_test_support" ]
829 } 829 }
830 830
831 if (is_android) { 831 if (is_android) {
832 sources -= [ 832 sources -= [
(...skipping 4319 matching lines...) Expand 10 before | Expand all | Expand 10 after
5152 } 5152 }
5153 5153
5154 if (is_win) { 5154 if (is_win) {
5155 loadable_module("conflicts_dll") { 5155 loadable_module("conflicts_dll") {
5156 testonly = true 5156 testonly = true
5157 sources = [ 5157 sources = [
5158 "conflicts/conflicts_dll.cc", 5158 "conflicts/conflicts_dll.cc",
5159 ] 5159 ]
5160 } 5160 }
5161 } 5161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698