| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chromecast/build/tests/cast_test.gni") | 10 import("//chromecast/build/tests/cast_test.gni") |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "ProcessUtilTest.*", | 142 "ProcessUtilTest.*", |
| 143 "StackContainer.BufferAlignment", | 143 "StackContainer.BufferAlignment", |
| 144 "SystemMetrics2Test.GetSystemMemoryInfo", | 144 "SystemMetrics2Test.GetSystemMemoryInfo", |
| 145 "TimeFormattingTest.TimeFormat*", | 145 "TimeFormattingTest.TimeFormat*", |
| 146 ] | 146 ] |
| 147 | 147 |
| 148 if (is_cast_audio_only) { | 148 if (is_cast_audio_only) { |
| 149 # Also disable TimeFormattingTest on audio-only builds, since we don't | 149 # Also disable TimeFormattingTest on audio-only builds, since we don't |
| 150 # include the necessary info in icudtl.dat. | 150 # include the necessary info in icudtl.dat. |
| 151 gtest_excludes += [ "TimeFormattingTest.*" ] | 151 gtest_excludes += [ "TimeFormattingTest.*" ] |
| 152 |
| 153 # TODO(mbjorge): Temporarily disable Realloc test on audio devices, |
| 154 # since it mysteriously is failing. As part of an effort to re-green |
| 155 # the unittests, current (2017-03-15) failures are being disabled to get |
| 156 # back to a green state. Re-enable once the tests have been fixed. |
| 157 # b/36238217, hotlist/461351 |
| 158 gtest_excludes += [ "TCMallocTest.Realloc" ] |
| 152 } | 159 } |
| 153 } | 160 } |
| 154 } | 161 } |
| 155 filters += [ base_unittests_filter ] | 162 filters += [ base_unittests_filter ] |
| 156 | 163 |
| 157 content_unittests_filter = { | 164 content_unittests_filter = { |
| 158 test_name = "content_unittests" | 165 test_name = "content_unittests" |
| 159 gtest_excludes = [] | 166 gtest_excludes = [] |
| 160 if (target_os == "linux" && !is_cast_desktop_build) { | 167 if (target_os == "linux" && !is_cast_desktop_build) { |
| 161 # DesktopCaptureDeviceTest.*: No capture device on Eureka | 168 # DesktopCaptureDeviceTest.*: No capture device on Eureka |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 472 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 466 | 473 |
| 467 deps = [ | 474 deps = [ |
| 468 ":cast_shell_apk_assets", | 475 ":cast_shell_apk_assets", |
| 469 "//base:base_java", | 476 "//base:base_java", |
| 470 "//chromecast/android:libcast_shell_android", | 477 "//chromecast/android:libcast_shell_android", |
| 471 "//chromecast/browser/android:cast_shell_java", | 478 "//chromecast/browser/android:cast_shell_java", |
| 472 ] | 479 ] |
| 473 } | 480 } |
| 474 } | 481 } |
| OLD | NEW |