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

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

Issue 2036873002: Making EventSender talk to the right WebWidget (for OOPIF support). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Proper scaling and lifetime management of events. Created 4 years, 2 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
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("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 "//cc", 454 "//cc",
455 "//cc/blink", 455 "//cc/blink",
456 "//components/test_runner:test_runner", 456 "//components/test_runner:test_runner",
457 "//content/browser:for_content_tests", 457 "//content/browser:for_content_tests",
458 "//content/child:for_content_tests", 458 "//content/child:for_content_tests",
459 "//content/public/common", 459 "//content/public/common",
460 "//content/renderer:for_content_tests", 460 "//content/renderer:for_content_tests",
461 "//device/bluetooth", 461 "//device/bluetooth",
462 "//skia", 462 "//skia",
463 "//ui/accessibility:ax_gen", 463 "//ui/accessibility:ax_gen",
464 "//ui/events/blink",
464 "//v8", 465 "//v8",
465 ] 466 ]
466 467
467 if (is_android) { 468 if (is_android) {
468 deps += [ "//content/public/test/android:test_support_content_jni_headers" ] 469 deps += [ "//content/public/test/android:test_support_content_jni_headers" ]
469 } 470 }
470 } 471 }
471 472
472 if (is_android) { 473 if (is_android) {
473 import("//build/config/android/rules.gni") 474 import("//build/config/android/rules.gni")
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 if (is_android) { 1700 if (is_android) {
1700 deps += [ "//testing/android/native_test:native_test_native_code" ] 1701 deps += [ "//testing/android/native_test:native_test_native_code" ]
1701 } 1702 }
1702 } 1703 }
1703 1704
1704 group("fuzzers") { 1705 group("fuzzers") {
1705 deps = [ 1706 deps = [
1706 "//content/test/fuzzer", 1707 "//content/test/fuzzer",
1707 ] 1708 ]
1708 } 1709 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698