| 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 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1209 ] | 1209 ] |
| 1210 } | 1210 } |
| 1211 if (!is_chromeos && use_ash) { | 1211 if (!is_chromeos && use_ash) { |
| 1212 sources -= [ | 1212 sources -= [ |
| 1213 # On Windows and Linux, we currently don't support enough of the | 1213 # On Windows and Linux, we currently don't support enough of the |
| 1214 # ash environment to run these unit tests. | 1214 # ash environment to run these unit tests. |
| 1215 # | 1215 # |
| 1216 # TODO: enable these on windows and linux. | 1216 # TODO: enable these on windows and linux. |
| 1217 "../browser/ui/ash/accelerator_commands_browsertest.cc", | 1217 "../browser/ui/ash/accelerator_commands_browsertest.cc", |
| 1218 "../browser/ui/ash/accelerator_controller_browsertest.cc", | 1218 "../browser/ui/ash/accelerator_controller_browsertest.cc", |
| 1219 "../browser/ui/ash/launcher/chrome_launcher_controller_browsertest.cc", | 1219 "../browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.
cc", |
| 1220 "../browser/ui/ash/launcher/launcher_favicon_loader_browsertest.cc", | 1220 "../browser/ui/ash/launcher/launcher_favicon_loader_browsertest.cc", |
| 1221 "../browser/ui/ash/shelf_browsertest.cc", | 1221 "../browser/ui/ash/shelf_browsertest.cc", |
| 1222 ] | 1222 ] |
| 1223 | 1223 |
| 1224 if (toolkit_views) { | 1224 if (toolkit_views) { |
| 1225 sources -= [ "../browser/ui/views/frame/browser_non_client_frame_view_as
h_browsertest.cc" ] | 1225 sources -= [ "../browser/ui/views/frame/browser_non_client_frame_view_as
h_browsertest.cc" ] |
| 1226 } | 1226 } |
| 1227 } | 1227 } |
| 1228 if (is_mac) { | 1228 if (is_mac) { |
| 1229 # TODO(mark): We really want this for all non-static library | 1229 # TODO(mark): We really want this for all non-static library |
| (...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2417 if (is_android) { | 2417 if (is_android) { |
| 2418 android_library("unit_tests_java") { | 2418 android_library("unit_tests_java") { |
| 2419 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2419 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2420 deps = [ | 2420 deps = [ |
| 2421 "//base:base_java", | 2421 "//base:base_java", |
| 2422 "//chrome/android:chrome_java", | 2422 "//chrome/android:chrome_java", |
| 2423 "//content/public/android:content_java", | 2423 "//content/public/android:content_java", |
| 2424 ] | 2424 ] |
| 2425 } | 2425 } |
| 2426 } | 2426 } |
| OLD | NEW |