| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 } | 336 } |
| 337 } | 337 } |
| 338 | 338 |
| 339 # TODO(watk): Run this on bots. http://crbug.com/461437 | 339 # TODO(watk): Run this on bots. http://crbug.com/461437 |
| 340 if (is_win || is_android || is_chromeos) { | 340 if (is_win || is_android || is_chromeos) { |
| 341 test("video_decode_accelerator_unittest") { | 341 test("video_decode_accelerator_unittest") { |
| 342 sources = [ | 342 sources = [ |
| 343 "video_accelerator_unittest_helpers.h", | 343 "video_accelerator_unittest_helpers.h", |
| 344 ] | 344 ] |
| 345 | 345 |
| 346 data = [ |
| 347 "//media/test/data/", |
| 348 ] |
| 349 |
| 346 deps = [ | 350 deps = [ |
| 347 ":gpu", | 351 ":gpu", |
| 348 "//base", | 352 "//base", |
| 353 "//base/test:test_support", |
| 349 "//media", | 354 "//media", |
| 350 "//testing/gtest", | 355 "//testing/gtest", |
| 351 "//ui/base", | 356 "//ui/base", |
| 352 "//ui/display/manager", | 357 "//ui/display/manager", |
| 353 "//ui/gfx", | 358 "//ui/gfx", |
| 354 "//ui/gfx:test_support", | 359 "//ui/gfx:test_support", |
| 355 "//ui/gfx/geometry", | 360 "//ui/gfx/geometry", |
| 356 "//ui/gl", | 361 "//ui/gl", |
| 357 "//ui/gl:test_support", | 362 "//ui/gl:test_support", |
| 358 "//ui/gl/init", | 363 "//ui/gl/init", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 "video_accelerator_unittest_helpers.h", | 490 "video_accelerator_unittest_helpers.h", |
| 486 ] | 491 ] |
| 487 if (use_x11) { | 492 if (use_x11) { |
| 488 deps += [ "//ui/gfx/x" ] | 493 deps += [ "//ui/gfx/x" ] |
| 489 } | 494 } |
| 490 if (use_ozone) { | 495 if (use_ozone) { |
| 491 deps += [ "//ui/ozone" ] | 496 deps += [ "//ui/ozone" ] |
| 492 } | 497 } |
| 493 } | 498 } |
| 494 } | 499 } |
| OLD | NEW |