| 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/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 ] | 586 ] |
| 587 | 587 |
| 588 # The browser window can be views or Cocoa on Mac. Test accordingly. | 588 # The browser window can be views or Cocoa on Mac. Test accordingly. |
| 589 if (mac_views_browser) { | 589 if (mac_views_browser) { |
| 590 sources += rebase_path( | 590 sources += rebase_path( |
| 591 chrome_tests_gypi_values.chrome_interactive_ui_test_views_non_ma
c_sources, | 591 chrome_tests_gypi_values.chrome_interactive_ui_test_views_non_ma
c_sources, |
| 592 ".", | 592 ".", |
| 593 "//chrome") | 593 "//chrome") |
| 594 | 594 |
| 595 # Aura depended tests. | 595 # Aura depended tests. |
| 596 sources -= [ | 596 sources -= [ "../browser/ui/views/bookmarks/bookmark_bar_view_test.cc" ] |
| 597 "../browser/ui/views/bookmarks/bookmark_bar_view_test.cc", | |
| 598 "../browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc", | |
| 599 ] | |
| 600 } else { | 597 } else { |
| 601 sources += rebase_path( | 598 sources += rebase_path( |
| 602 chrome_tests_gypi_values.chrome_interactive_ui_test_cocoa_source
s, | 599 chrome_tests_gypi_values.chrome_interactive_ui_test_cocoa_source
s, |
| 603 ".", | 600 ".", |
| 604 "//chrome") | 601 "//chrome") |
| 605 } | 602 } |
| 606 } | 603 } |
| 607 | 604 |
| 608 if (use_x11) { | 605 if (use_x11) { |
| 609 configs += [ "//build/config/linux:xtst" ] | 606 configs += [ "//build/config/linux:xtst" ] |
| (...skipping 1852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2462 if (is_android) { | 2459 if (is_android) { |
| 2463 android_library("unit_tests_java") { | 2460 android_library("unit_tests_java") { |
| 2464 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2461 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2465 deps = [ | 2462 deps = [ |
| 2466 "//base:base_java", | 2463 "//base:base_java", |
| 2467 "//chrome/android:chrome_java", | 2464 "//chrome/android:chrome_java", |
| 2468 "//content/public/android:content_java", | 2465 "//content/public/android:content_java", |
| 2469 ] | 2466 ] |
| 2470 } | 2467 } |
| 2471 } | 2468 } |
| OLD | NEW |