| OLD | NEW |
| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "//content/test/data/media/depth_stream_test_utilities.js", | 287 "//content/test/data/media/depth_stream_test_utilities.js", |
| 288 "//content/test/data/media/getusermedia-depth-capture.html", | 288 "//content/test/data/media/getusermedia-depth-capture.html", |
| 289 "//content/test/data/media/webrtc_test_utilities.js", | 289 "//content/test/data/media/webrtc_test_utilities.js", |
| 290 | 290 |
| 291 # For GpuProcess.video | 291 # For GpuProcess.video |
| 292 "//content/test/data/media/bear.ogv", | 292 "//content/test/data/media/bear.ogv", |
| 293 | 293 |
| 294 # For webgl_conformance | 294 # For webgl_conformance |
| 295 "//third_party/webgl/", | 295 "//third_party/webgl/", |
| 296 "//content/test/gpu/run_gpu_integration_test.py", | 296 "//content/test/gpu/run_gpu_integration_test.py", |
| 297 |
| 298 # For pixel_test |
| 299 "//media/test/data/bear.mp4", |
| 300 "//media/test/data/bear-vp9.webm", |
| 297 ] | 301 ] |
| 298 } | 302 } |
| 299 | 303 |
| 300 if (!is_android) { | 304 if (!is_android) { |
| 301 static_library("test_support_ui") { | 305 static_library("test_support_ui") { |
| 302 defines = [] | 306 defines = [] |
| 303 testonly = true | 307 testonly = true |
| 304 | 308 |
| 305 sources = [ | 309 sources = [ |
| 306 "../browser/permissions/permission_request_manager_test_api.cc", | 310 "../browser/permissions/permission_request_manager_test_api.cc", |
| (...skipping 4913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5220 } | 5224 } |
| 5221 | 5225 |
| 5222 if (is_win) { | 5226 if (is_win) { |
| 5223 loadable_module("conflicts_dll") { | 5227 loadable_module("conflicts_dll") { |
| 5224 testonly = true | 5228 testonly = true |
| 5225 sources = [ | 5229 sources = [ |
| 5226 "conflicts/conflicts_dll.cc", | 5230 "conflicts/conflicts_dll.cc", |
| 5227 ] | 5231 ] |
| 5228 } | 5232 } |
| 5229 } | 5233 } |
| OLD | NEW |