Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: chromecast/BUILD.gn

Issue 2803493002: Revert of [Chromecast][Temporary] Disable TCMallocTest.Realloc on cast audio. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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" ]
159 } 152 }
160 } 153 }
161 } 154 }
162 filters += [ base_unittests_filter ] 155 filters += [ base_unittests_filter ]
163 156
164 content_unittests_filter = { 157 content_unittests_filter = {
165 test_name = "content_unittests" 158 test_name = "content_unittests"
166 gtest_excludes = [] 159 gtest_excludes = []
167 if (target_os == "linux" && !is_cast_desktop_build) { 160 if (target_os == "linux" && !is_cast_desktop_build) {
168 # DesktopCaptureDeviceTest.*: No capture device on Eureka 161 # DesktopCaptureDeviceTest.*: No capture device on Eureka
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] 465 shared_libraries = [ "//chromecast/android:libcast_shell_android" ]
473 466
474 deps = [ 467 deps = [
475 ":cast_shell_apk_assets", 468 ":cast_shell_apk_assets",
476 "//base:base_java", 469 "//base:base_java",
477 "//chromecast/android:libcast_shell_android", 470 "//chromecast/android:libcast_shell_android",
478 "//chromecast/browser/android:cast_shell_java", 471 "//chromecast/browser/android:cast_shell_java",
479 ] 472 ]
480 } 473 }
481 } 474 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698