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

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

Issue 2795633002: Make select-to-speak work with Google Docs. (Closed)
Patch Set: Ready to land Created 3 years, 7 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 | « chrome/browser/resources/chromeos/select_to_speak/select_to_speak_gdocs_script.js ('k') | 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 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/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 } 325 }
326 326
327 import("//third_party/protobuf/proto_library.gni") 327 import("//third_party/protobuf/proto_library.gni")
328 328
329 proto_library("test_proto") { 329 proto_library("test_proto") {
330 sources = [ 330 sources = [
331 "../common/safe_browsing/ipc_protobuf_message_test.proto", 331 "../common/safe_browsing/ipc_protobuf_message_test.proto",
332 ] 332 ]
333 } 333 }
334 334
335 if (is_chromeos) {
336 # These tests are only meant to run on an FYI bot because they
337 # test against live sites, as a way to catch potential regressions.
338 test("accessibility_live_site_tests") {
339 sources = [
340 "../browser/chromeos/accessibility/select_to_speak_live_site_browsertest .cc",
341 "base/interactive_test_utils.cc",
342 "base/interactive_test_utils.h",
343 "base/interactive_test_utils_aura.cc",
344 "base/interactive_test_utils_aura.h",
345 "base/interactive_test_utils_common_views.cc",
346 "base/interactive_ui_tests_main.cc",
347 ]
348 configs += [ "//build/config:precompiled_headers" ]
349
350 data_deps = [
351 "//testing/buildbot/filters:interactive_ui_tests_filters",
352 ]
353
354 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
355 ldflags = []
356
357 deps = [
358 ":test_support",
359 ":test_support_ui",
360 "//chrome:packed_resources",
361 "//chrome:resources",
362 "//chrome:strings",
363 "//chrome/browser",
364 "//chrome/browser/devtools",
365 "//chrome/renderer",
366 "//components/resources",
367 "//components/sync",
368 "//components/sync:test_support_model",
369 "//content/app/resources",
370 "//content/test:test_support",
371 "//crypto:platform",
372 "//crypto:test_support",
373 "//extensions/features",
374 "//google_apis:test_support",
375 "//net",
376 "//net:net_resources",
377 "//net:test_support",
378 "//skia",
379 "//testing/gmock",
380 "//testing/gtest",
381 "//third_party/hunspell",
382 "//third_party/icu",
383 "//third_party/libpng",
384 "//third_party/zlib",
385 "//ui/base:test_support",
386 "//ui/resources:ui_test_pak",
387 "//ui/web_dialogs:test_support",
388 ]
389 }
390 }
391
335 test("interactive_ui_tests") { 392 test("interactive_ui_tests") {
336 sources = [ 393 sources = [
337 "../browser/apps/app_browsertest_util.cc", 394 "../browser/apps/app_browsertest_util.cc",
338 "../browser/apps/app_browsertest_util.h", 395 "../browser/apps/app_browsertest_util.h",
339 "../browser/apps/app_pointer_lock_interactive_uitest.cc", 396 "../browser/apps/app_pointer_lock_interactive_uitest.cc",
340 "../browser/apps/app_shim/app_shim_interactive_uitest_mac.mm", 397 "../browser/apps/app_shim/app_shim_interactive_uitest_mac.mm",
341 "../browser/apps/app_shim/app_shim_quit_interactive_uitest_mac.mm", 398 "../browser/apps/app_shim/app_shim_quit_interactive_uitest_mac.mm",
342 "../browser/apps/app_window_interactive_uitest.cc", 399 "../browser/apps/app_window_interactive_uitest.cc",
343 "../browser/apps/guest_view/web_view_interactive_browsertest.cc", 400 "../browser/apps/guest_view/web_view_interactive_browsertest.cc",
344 "../browser/autofill/autofill_interactive_uitest.cc", 401 "../browser/autofill/autofill_interactive_uitest.cc",
(...skipping 4681 matching lines...) Expand 10 before | Expand all | Expand 10 after
5026 } 5083 }
5027 5084
5028 if (is_win) { 5085 if (is_win) {
5029 loadable_module("conflicts_dll") { 5086 loadable_module("conflicts_dll") {
5030 testonly = true 5087 testonly = true
5031 sources = [ 5088 sources = [
5032 "conflicts/conflicts_dll.cc", 5089 "conflicts/conflicts_dll.cc",
5033 ] 5090 ]
5034 } 5091 }
5035 } 5092 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/select_to_speak/select_to_speak_gdocs_script.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698