Chromium Code Reviews| 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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 474 configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ] | 474 configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ] |
| 475 } | 475 } |
| 476 } | 476 } |
| 477 } | 477 } |
| 478 if (is_chromeos || !use_x11) { | 478 if (is_chromeos || !use_x11) { |
| 479 sources -= [ | 479 sources -= [ |
| 480 "../../ui/views/widget/desktop_aura/desktop_window_tree_host_x11_inter active_uitest.cc", | 480 "../../ui/views/widget/desktop_aura/desktop_window_tree_host_x11_inter active_uitest.cc", |
| 481 "../../ui/views/widget/desktop_aura/x11_topmost_window_finder_interact ive_uitest.cc", | 481 "../../ui/views/widget/desktop_aura/x11_topmost_window_finder_interact ive_uitest.cc", |
| 482 ] | 482 ] |
| 483 } | 483 } |
| 484 if (use_aura) { | 484 if (use_aura || is_mac) { |
| 485 # TODO(ekaramad): These tests are activated for aura only. They should | 485 # TODO(ekaramad): These tests are activated for aura only. They should |
|
kenrb
2016/07/21 21:48:16
nit: Comment needs update.
EhsanK
2016/07/25 17:12:02
Acknowledged.
| |
| 486 # be moved to 'interactive_ui_tests' sources for all platforms once bug | 486 # be moved to 'interactive_ui_tests' sources for all platforms once bug |
| 487 # 578168 is fixed. | 487 # 578168 is fixed. |
| 488 sources += [ "//chrome/browser/renderer_host/site_per_process_text_input _browsertest.cc" ] | 488 sources += [ "//chrome/browser/renderer_host/site_per_process_text_input _browsertest.cc" ] |
| 489 deps += [ "//ui/touch_selection" ] | 489 deps += [ "//ui/touch_selection" ] |
| 490 } | 490 } |
| 491 } | 491 } |
| 492 | 492 |
| 493 if (!is_desktop_linux) { | 493 if (!is_desktop_linux) { |
| 494 # Everything but desktop Linux. | 494 # Everything but desktop Linux. |
| 495 sources += rebase_path( | 495 sources += rebase_path( |
| (...skipping 1972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2468 if (is_android) { | 2468 if (is_android) { |
| 2469 android_library("unit_tests_java") { | 2469 android_library("unit_tests_java") { |
| 2470 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] | 2470 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] |
| 2471 deps = [ | 2471 deps = [ |
| 2472 "//base:base_java", | 2472 "//base:base_java", |
| 2473 "//chrome/android:chrome_java", | 2473 "//chrome/android:chrome_java", |
| 2474 "//content/public/android:content_java", | 2474 "//content/public/android:content_java", |
| 2475 ] | 2475 ] |
| 2476 } | 2476 } |
| 2477 } | 2477 } |
| OLD | NEW |