| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 } | 368 } |
| 369 } | 369 } |
| 370 | 370 |
| 371 # TODO(watk): Run this on bots. http://crbug.com/461437 | 371 # TODO(watk): Run this on bots. http://crbug.com/461437 |
| 372 if (is_win || is_android || is_chromeos) { | 372 if (is_win || is_android || is_chromeos) { |
| 373 test("video_decode_accelerator_unittest") { | 373 test("video_decode_accelerator_unittest") { |
| 374 sources = [ | 374 sources = [ |
| 375 "video_accelerator_unittest_helpers.h", | 375 "video_accelerator_unittest_helpers.h", |
| 376 ] | 376 ] |
| 377 | 377 |
| 378 data = [ |
| 379 "//media/test/data/", |
| 380 ] |
| 381 |
| 378 deps = [ | 382 deps = [ |
| 379 ":gpu", | 383 ":gpu", |
| 380 "//base", | 384 "//base", |
| 385 "//base/test:test_support", |
| 381 "//media", | 386 "//media", |
| 382 "//testing/gtest", | 387 "//testing/gtest", |
| 383 "//ui/base", | 388 "//ui/base", |
| 384 "//ui/gfx", | 389 "//ui/gfx", |
| 385 "//ui/gfx:test_support", | 390 "//ui/gfx:test_support", |
| 386 "//ui/gfx/geometry", | 391 "//ui/gfx/geometry", |
| 387 "//ui/gl", | 392 "//ui/gl", |
| 388 "//ui/gl:test_support", | 393 "//ui/gl:test_support", |
| 389 "//ui/gl/init", | 394 "//ui/gl/init", |
| 390 ] | 395 ] |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 "video_accelerator_unittest_helpers.h", | 520 "video_accelerator_unittest_helpers.h", |
| 516 ] | 521 ] |
| 517 if (use_x11) { | 522 if (use_x11) { |
| 518 deps += [ "//ui/gfx/x" ] | 523 deps += [ "//ui/gfx/x" ] |
| 519 } | 524 } |
| 520 if (use_ozone) { | 525 if (use_ozone) { |
| 521 deps += [ "//ui/ozone" ] | 526 deps += [ "//ui/ozone" ] |
| 522 } | 527 } |
| 523 } | 528 } |
| 524 } | 529 } |
| OLD | NEW |