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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ] | 475 configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ] |
476 } | 476 } |
477 } | 477 } |
478 } | 478 } |
479 if (is_chromeos || !use_x11) { | 479 if (is_chromeos || !use_x11) { |
480 sources -= [ | 480 sources -= [ |
481 "../../ui/views/widget/desktop_aura/desktop_window_tree_host_x11_inter
active_uitest.cc", | 481 "../../ui/views/widget/desktop_aura/desktop_window_tree_host_x11_inter
active_uitest.cc", |
482 "../../ui/views/widget/desktop_aura/x11_topmost_window_finder_interact
ive_uitest.cc", | 482 "../../ui/views/widget/desktop_aura/x11_topmost_window_finder_interact
ive_uitest.cc", |
483 ] | 483 ] |
484 } | 484 } |
485 if (use_aura) { | 485 if (use_aura || is_mac) { |
486 # TODO(ekaramad): These tests are activated for aura only. They should | 486 # TODO(ekaramad): These tests are activated for aura and mac only. They |
487 # be moved to 'interactive_ui_tests' sources for all platforms once bug | 487 # should be moved to 'interactive_ui_tests' sources for all platforms |
488 # 578168 is fixed. | 488 # once https://crbug.com/578168 is fixed. |
489 sources += [ "//chrome/browser/renderer_host/site_per_process_text_input
_browsertest.cc" ] | 489 sources += [ "//chrome/browser/renderer_host/site_per_process_text_input
_browsertest.cc" ] |
490 deps += [ "//ui/touch_selection" ] | 490 deps += [ "//ui/touch_selection" ] |
491 } | 491 } |
492 } | 492 } |
493 | 493 |
494 if (!is_desktop_linux) { | 494 if (!is_desktop_linux) { |
495 # Everything but desktop Linux. | 495 # Everything but desktop Linux. |
496 sources += rebase_path( | 496 sources += rebase_path( |
497 chrome_tests_gypi_values.chrome_interactive_ui_test_non_desktop_li
nux_sources, | 497 chrome_tests_gypi_values.chrome_interactive_ui_test_non_desktop_li
nux_sources, |
498 ".", | 498 ".", |
(...skipping 1970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2469 if (is_android) { | 2469 if (is_android) { |
2470 android_library("unit_tests_java") { | 2470 android_library("unit_tests_java") { |
2471 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2471 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2472 deps = [ | 2472 deps = [ |
2473 "//base:base_java", | 2473 "//base:base_java", |
2474 "//chrome/android:chrome_java", | 2474 "//chrome/android:chrome_java", |
2475 "//content/public/android:content_java", | 2475 "//content/public/android:content_java", |
2476 ] | 2476 ] |
2477 } | 2477 } |
2478 } | 2478 } |
OLD | NEW |