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

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

Issue 1747803003: MacViews: Implement Tab Dragging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed click simulation, reimplemented CocoaWindowMoveLoop without relying on the WindowServer. Created 4 years, 7 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/chrome_tests.gni") 10 import("//chrome/chrome_tests.gni")
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 ldflags += [ "-Wl,-ObjC" ] 539 ldflags += [ "-Wl,-ObjC" ]
540 540
541 # The browser window can be views or Cocoa on Mac. Test accordingly. 541 # The browser window can be views or Cocoa on Mac. Test accordingly.
542 if (mac_views_browser) { 542 if (mac_views_browser) {
543 sources += rebase_path( 543 sources += rebase_path(
544 chrome_tests_gypi_values.chrome_interactive_ui_test_views_non_ma c_sources, 544 chrome_tests_gypi_values.chrome_interactive_ui_test_views_non_ma c_sources,
545 ".", 545 ".",
546 "//chrome") 546 "//chrome")
547 547
548 # Aura depended tests. 548 # Aura depended tests.
549 sources -= [ 549 sources -= [ "../browser/ui/views/bookmarks/bookmark_bar_view_test.cc" ]
550 "../browser/ui/views/bookmarks/bookmark_bar_view_test.cc",
551 "../browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc",
552 ]
553 } else { 550 } else {
554 sources += rebase_path( 551 sources += rebase_path(
555 chrome_tests_gypi_values.chrome_interactive_ui_test_cocoa_source s, 552 chrome_tests_gypi_values.chrome_interactive_ui_test_cocoa_source s,
556 ".", 553 ".",
557 "//chrome") 554 "//chrome")
558 } 555 }
559 } 556 }
560 557
561 if (use_x11) { 558 if (use_x11) {
562 configs += [ "//build/config/linux:xtst" ] 559 configs += [ "//build/config/linux:xtst" ]
(...skipping 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after
2373 if (is_android) { 2370 if (is_android) {
2374 android_library("unit_tests_java") { 2371 android_library("unit_tests_java") {
2375 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2372 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2376 deps = [ 2373 deps = [
2377 "//base:base_java", 2374 "//base:base_java",
2378 "//chrome/android:chrome_java", 2375 "//chrome/android:chrome_java",
2379 "//content/public/android:content_java", 2376 "//content/public/android:content_java",
2380 ] 2377 ]
2381 } 2378 }
2382 } 2379 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698