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

Side by Side Diff: content/test/BUILD.gn

Issue 1505903002: Don't require expectations file for DumpAccessibility tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress lsan Created 5 years 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
OLDNEW
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/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build_overrides/v8.gni") 9 import("//build_overrides/v8.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 "//content/app/strings", 429 "//content/app/strings",
430 "//net:net_resources", 430 "//net:net_resources",
431 "//third_party/WebKit/public:resources", 431 "//third_party/WebKit/public:resources",
432 "//third_party/iaccessible2", 432 "//third_party/iaccessible2",
433 "//third_party/isimpledom", 433 "//third_party/isimpledom",
434 ] 434 ]
435 435
436 libs = [ "oleacc.lib" ] 436 libs = [ "oleacc.lib" ]
437 } 437 }
438 438
439 if (is_linux) {
440 sources -=
441 [ "../browser/accessibility/dump_accessibility_tree_browsertest.cc" ]
442 }
443
444 if (is_android) { 439 if (is_android) {
445 sources += rebase_path( 440 sources += rebase_path(
446 content_tests_gypi_values.content_browsertests_android_sources, 441 content_tests_gypi_values.content_browsertests_android_sources,
447 ".", 442 ".",
448 "//content") 443 "//content")
449 sources -= 444 sources -=
450 [ "../browser/battery_status/battery_monitor_impl_browsertest.cc" ] 445 [ "../browser/battery_status/battery_monitor_impl_browsertest.cc" ]
451 deps += [ 446 deps += [
452 ":content_browsertests_java", 447 ":content_browsertests_java",
453 ":content_browsertests_manifest", 448 ":content_browsertests_manifest",
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 deps += [ 896 deps += [
902 "//gpu:test_support", 897 "//gpu:test_support",
903 "//media/base/android", 898 "//media/base/android",
904 "//media/base/android:media_java", 899 "//media/base/android:media_java",
905 "//testing/gmock", 900 "//testing/gmock",
906 "//ui/android:ui_java", 901 "//ui/android:ui_java",
907 ] 902 ]
908 } 903 }
909 } 904 }
910 } 905 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698