| OLD | NEW |
| 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/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 # Mark all targets as test only. | 8 # Mark all targets as test only. |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "//testing/android/reporter:reporter_java", | 73 "//testing/android/reporter:reporter_java", |
| 74 "//third_party/android_support_test_runner:rules_java", | 74 "//third_party/android_support_test_runner:rules_java", |
| 75 "//third_party/android_support_test_runner:runner_java", | 75 "//third_party/android_support_test_runner:runner_java", |
| 76 "//third_party/junit", | 76 "//third_party/junit", |
| 77 ] | 77 ] |
| 78 data = [ | 78 data = [ |
| 79 "test/data/", | 79 "test/data/", |
| 80 "//third_party/WebKit/LayoutTests/platform/linux/virtual/stable/webexposed/"
, | 80 "//third_party/WebKit/LayoutTests/platform/linux/virtual/stable/webexposed/"
, |
| 81 "//third_party/WebKit/LayoutTests/platform/mac/virtual/stable/webexposed/", | 81 "//third_party/WebKit/LayoutTests/platform/mac/virtual/stable/webexposed/", |
| 82 "//third_party/WebKit/LayoutTests/platform/win/virtual/stable/webexposed/", | 82 "//third_party/WebKit/LayoutTests/platform/win/virtual/stable/webexposed/", |
| 83 "//third_party/WebKit/LayoutTests/resources/global-interface-listing.js", |
| 83 "//third_party/WebKit/LayoutTests/virtual/stable/webexposed/", | 84 "//third_party/WebKit/LayoutTests/virtual/stable/webexposed/", |
| 84 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing.html", | 85 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing.html", |
| 85 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expect
ed.txt", | 86 "//third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expect
ed.txt", |
| 86 "//third_party/WebKit/LayoutTests/webexposed/resources/global-interface-list
ing.js", | |
| 87 ] | 87 ] |
| 88 } | 88 } |
| OLD | NEW |