| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 sources -= [ "../browser/ui/views/toolbar/toolbar_button_test.cc" ] | 390 sources -= [ "../browser/ui/views/toolbar/toolbar_button_test.cc" ] |
| 391 | 391 |
| 392 if (!is_chromeos) { | 392 if (!is_chromeos) { |
| 393 # Desktop linux. | 393 # Desktop linux. |
| 394 sources -= [ | 394 sources -= [ |
| 395 # TODO(port): This times out. Attempts have been made to fix the | 395 # TODO(port): This times out. Attempts have been made to fix the |
| 396 # individual failures, but each time I disable a test from these | 396 # individual failures, but each time I disable a test from these |
| 397 # suites, it seems like one or another starts timing out too. | 397 # suites, it seems like one or another starts timing out too. |
| 398 "../browser/ui/views/keyboard_access_browsertest.cc", | 398 "../browser/ui/views/keyboard_access_browsertest.cc", |
| 399 ] | 399 ] |
| 400 sources += |
| 401 [ "../browser/ui/libgtk2ui/select_file_dialog_interactive_uitest.c
c" ] |
| 402 configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ] |
| 400 } | 403 } |
| 401 } | 404 } |
| 402 if (is_chromeos || !use_x11) { | 405 if (is_chromeos || !use_x11) { |
| 403 sources -= [ | 406 sources -= [ |
| 404 "../../ui/views/widget/desktop_aura/desktop_window_tree_host_x11_inter
active_uitest.cc", | 407 "../../ui/views/widget/desktop_aura/desktop_window_tree_host_x11_inter
active_uitest.cc", |
| 405 "../../ui/views/widget/desktop_aura/x11_topmost_window_finder_interact
ive_uitest.cc", | 408 "../../ui/views/widget/desktop_aura/x11_topmost_window_finder_interact
ive_uitest.cc", |
| 406 ] | 409 ] |
| 407 } | 410 } |
| 408 if (use_aura) { | 411 if (use_aura) { |
| 409 deps += [ "//ui/touch_selection" ] | 412 deps += [ "//ui/touch_selection" ] |
| (...skipping 1829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2239 if (is_android) { | 2242 if (is_android) { |
| 2240 android_library("unit_tests_java") { | 2243 android_library("unit_tests_java") { |
| 2241 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2244 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2242 deps = [ | 2245 deps = [ |
| 2243 "//base:base_java", | 2246 "//base:base_java", |
| 2244 "//chrome/android:chrome_java", | 2247 "//chrome/android:chrome_java", |
| 2245 "//content/public/android:content_java", | 2248 "//content/public/android:content_java", |
| 2246 ] | 2249 ] |
| 2247 } | 2250 } |
| 2248 } | 2251 } |
| OLD | NEW |