| 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 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1220 ] | 1220 ] |
| 1221 } | 1221 } |
| 1222 if (!is_chromeos && use_ash) { | 1222 if (!is_chromeos && use_ash) { |
| 1223 sources -= [ | 1223 sources -= [ |
| 1224 # On Windows and Linux, we currently don't support enough of the | 1224 # On Windows and Linux, we currently don't support enough of the |
| 1225 # ash environment to run these unit tests. | 1225 # ash environment to run these unit tests. |
| 1226 # | 1226 # |
| 1227 # TODO: enable these on windows and linux. | 1227 # TODO: enable these on windows and linux. |
| 1228 "../browser/ui/ash/accelerator_commands_browsertest.cc", | 1228 "../browser/ui/ash/accelerator_commands_browsertest.cc", |
| 1229 "../browser/ui/ash/accelerator_controller_browsertest.cc", | 1229 "../browser/ui/ash/accelerator_controller_browsertest.cc", |
| 1230 "../browser/ui/ash/launcher/chrome_launcher_controller_browsertest.cc", | 1230 "../browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.
cc", |
| 1231 "../browser/ui/ash/launcher/launcher_favicon_loader_browsertest.cc", | 1231 "../browser/ui/ash/launcher/launcher_favicon_loader_browsertest.cc", |
| 1232 "../browser/ui/ash/shelf_browsertest.cc", | 1232 "../browser/ui/ash/shelf_browsertest.cc", |
| 1233 ] | 1233 ] |
| 1234 | 1234 |
| 1235 if (toolkit_views) { | 1235 if (toolkit_views) { |
| 1236 sources -= [ "../browser/ui/views/frame/browser_non_client_frame_view_as
h_browsertest.cc" ] | 1236 sources -= [ "../browser/ui/views/frame/browser_non_client_frame_view_as
h_browsertest.cc" ] |
| 1237 } | 1237 } |
| 1238 } | 1238 } |
| 1239 if (is_mac) { | 1239 if (is_mac) { |
| 1240 # TODO(mark): We really want this for all non-static library | 1240 # TODO(mark): We really want this for all non-static library |
| (...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2428 if (is_android) { | 2428 if (is_android) { |
| 2429 android_library("unit_tests_java") { | 2429 android_library("unit_tests_java") { |
| 2430 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2430 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2431 deps = [ | 2431 deps = [ |
| 2432 "//base:base_java", | 2432 "//base:base_java", |
| 2433 "//chrome/android:chrome_java", | 2433 "//chrome/android:chrome_java", |
| 2434 "//content/public/android:content_java", | 2434 "//content/public/android:content_java", |
| 2435 ] | 2435 ] |
| 2436 } | 2436 } |
| 2437 } | 2437 } |
| OLD | NEW |