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

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

Issue 2478583005: Browser tests for starting a drag-and-drop out of an OOPIF. (Closed)
Patch Set: Rebasing... Created 4 years, 1 month 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/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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 "base/interactive_test_utils_win.cc", 428 "base/interactive_test_utils_win.cc",
429 "base/interactive_ui_tests_main.cc", 429 "base/interactive_ui_tests_main.cc",
430 "base/view_event_test_platform_part.h", 430 "base/view_event_test_platform_part.h",
431 "base/view_event_test_platform_part_chromeos.cc", 431 "base/view_event_test_platform_part_chromeos.cc",
432 "base/view_event_test_platform_part_default.cc", 432 "base/view_event_test_platform_part_default.cc",
433 "ppapi/ppapi_interactive_browsertest.cc", 433 "ppapi/ppapi_interactive_browsertest.cc",
434 ] 434 ]
435 435
436 configs += [ "//build/config:precompiled_headers" ] 436 configs += [ "//build/config:precompiled_headers" ]
437 437
438 data_deps = [] 438 data_deps = [
439 "//testing/buildbot/filters:interactive_ui_tests_filters",
440 ]
439 441
440 data = [ 442 data = [
441 "data/", 443 "data/",
442 "//content/test/data/", 444 "//content/test/data/",
443 "//net/tools/testserver/", 445 "//net/tools/testserver/",
444 "//ppapi/tests/test_case.html", 446 "//ppapi/tests/test_case.html",
445 "//ppapi/tests/test_case.html.mock-http-headers", 447 "//ppapi/tests/test_case.html.mock-http-headers",
446 "//ppapi/tests/test_page.css", 448 "//ppapi/tests/test_page.css",
447 "//ppapi/tests/test_page.css.mock-http-headers", 449 "//ppapi/tests/test_page.css.mock-http-headers",
448 "//third_party/pyftpdlib/", 450 "//third_party/pyftpdlib/",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 # should be deleted and this line removed. See the 512 # should be deleted and this line removed. See the
511 # chrome_extensions_interactive_uitests target for more. 513 # chrome_extensions_interactive_uitests target for more.
512 deps += [ "//extensions:chrome_extensions_interactive_uitests" ] 514 deps += [ "//extensions:chrome_extensions_interactive_uitests" ]
513 515
514 # Runtime dependencies 516 # Runtime dependencies
515 data_deps += [ 517 data_deps += [
516 "//ppapi:ppapi_tests", 518 "//ppapi:ppapi_tests",
517 "//third_party/mesa:osmesa", 519 "//third_party/mesa:osmesa",
518 ] 520 ]
519 521
522 if (use_aura) {
523 sources += [ "../browser/drag_and_drop_browsertest.cc" ]
sky 2016/11/15 00:37:55 Name file with 'interactive_uitest' like the rest
Łukasz Anforowicz 2016/11/15 18:28:21 Done.
524 }
525
520 if (toolkit_views) { 526 if (toolkit_views) {
521 sources += [ 527 sources += [
522 "../browser/ui/views/menu_controller_interactive_uitest.cc", 528 "../browser/ui/views/menu_controller_interactive_uitest.cc",
523 "../browser/ui/views/menu_item_view_interactive_uitest.cc", 529 "../browser/ui/views/menu_item_view_interactive_uitest.cc",
524 "../browser/ui/views/menu_model_adapter_test.cc", 530 "../browser/ui/views/menu_model_adapter_test.cc",
525 "../browser/ui/views/menu_test_base.cc", 531 "../browser/ui/views/menu_test_base.cc",
526 "../browser/ui/views/menu_test_base.h", 532 "../browser/ui/views/menu_test_base.h",
527 "../browser/ui/views/menu_view_drag_and_drop_test.cc", 533 "../browser/ui/views/menu_view_drag_and_drop_test.cc",
528 "../browser/ui/views/status_icons/status_tray_state_changer_interactive_ uitest_win.cc", 534 "../browser/ui/views/status_icons/status_tray_state_changer_interactive_ uitest_win.cc",
529 "//ui/views/corewm/desktop_capture_controller_unittest.cc", 535 "//ui/views/corewm/desktop_capture_controller_unittest.cc",
(...skipping 4528 matching lines...) Expand 10 before | Expand all | Expand 10 after
5058 "touch_hud", 5064 "touch_hud",
5059 "ui", 5065 "ui",
5060 ] 5066 ]
5061 5067
5062 if (is_linux && !is_android) { 5068 if (is_linux && !is_android) {
5063 deps += [ "//components/font_service:manifest" ] 5069 deps += [ "//components/font_service:manifest" ]
5064 packaged_services += [ "font_service" ] 5070 packaged_services += [ "font_service" ]
5065 } 5071 }
5066 } 5072 }
5067 } 5073 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698