| 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 | 358 |
| 359 data = [ | 359 data = [ |
| 360 "//media/test/data/", | 360 "//media/test/data/", |
| 361 ] | 361 ] |
| 362 | 362 |
| 363 deps = [ | 363 deps = [ |
| 364 ":gpu", | 364 ":gpu", |
| 365 "//base", | 365 "//base", |
| 366 "//base/test:test_support", | 366 "//base/test:test_support", |
| 367 "//media", | 367 "//media", |
| 368 "//media/base:test_support", |
| 368 "//testing/gtest", | 369 "//testing/gtest", |
| 369 "//ui/base", | 370 "//ui/base", |
| 370 "//ui/display/manager", | 371 "//ui/display/manager", |
| 371 "//ui/gfx", | 372 "//ui/gfx", |
| 372 "//ui/gfx:test_support", | 373 "//ui/gfx:test_support", |
| 373 "//ui/gfx/geometry", | 374 "//ui/gfx/geometry", |
| 374 "//ui/gl", | 375 "//ui/gl", |
| 375 "//ui/gl:test_support", | 376 "//ui/gl:test_support", |
| 376 "//ui/gl/init", | 377 "//ui/gl/init", |
| 377 ] | 378 ] |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 "video_accelerator_unittest_helpers.h", | 507 "video_accelerator_unittest_helpers.h", |
| 507 ] | 508 ] |
| 508 if (use_x11) { | 509 if (use_x11) { |
| 509 deps += [ "//ui/gfx/x" ] | 510 deps += [ "//ui/gfx/x" ] |
| 510 } | 511 } |
| 511 if (use_ozone) { | 512 if (use_ozone) { |
| 512 deps += [ "//ui/ozone" ] | 513 deps += [ "//ui/ozone" ] |
| 513 } | 514 } |
| 514 } | 515 } |
| 515 } | 516 } |
| OLD | NEW |